Click here to Skip to main content
15,915,094 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getting HTML source displaying Pin
James Dufty20-Jul-06 15:35
James Dufty20-Jul-06 15:35 
Questionpassing data to a textbox on a form using a method in a class Pin
haz1319-Jul-06 13:32
haz1319-Jul-06 13:32 
AnswerROTFLMAO Pin
Ennis Ray Lynch, Jr.19-Jul-06 13:57
Ennis Ray Lynch, Jr.19-Jul-06 13:57 
QuestionRe: ROTFLMAO Pin
haz1319-Jul-06 14:28
haz1319-Jul-06 14:28 
AnswerRe: ROTFLMAO Pin
Ennis Ray Lynch, Jr.19-Jul-06 14:40
Ennis Ray Lynch, Jr.19-Jul-06 14:40 
AnswerRe: passing data to a textbox on a form using a method in a class Pin
Christian Graus19-Jul-06 19:16
protectorChristian Graus19-Jul-06 19:16 
GeneralRe: passing data to a textbox on a form using a method in a class Pin
AB777119-Jul-06 19:36
AB777119-Jul-06 19:36 
QuestionRe: passing data to a textbox on a form using a method in a class Pin
haz1322-Jul-06 3:05
haz1322-Jul-06 3:05 
Thanks for your more helpful version. I am new to this oop and slowly getting my head around it.

I have gone away and read up on delegates but still fail to understand their use.

I understand what you mean in your second method but am slightly confused about loading a reference into my NumberProcessing class. Surely when creating the instance Form1 which is public(of the form class) Form1 properties and methods should be available to other classes within the same namespace. I don't understand why I can't see them?

OK - accepting you can't see the properties and methods of Form 1 in other classes, how do I load a reference of the Form1 object into my static NumberProcessing class?

Here is my code - the problem is when trying to access Form1.SetFormData(); in the NumberProcessing class.


namespace RouletteV1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}


private void btn1_Click(object sender, EventArgs e)
{
NumberAttributes.Load(1);
}

public void SetFormData()
{
//here is where I will set the textbox properties

textBox1.Text = "Hello";
}

}
}

--------------

namespace RouletteV1
{
public static class NumberAttributes
{
public void Load(short Number)
{
// load the number data into global properties here

NumberProcessing.UpdateNumArray();
}
}

---------------

namespace RouletteV1
{
public static class NumberProcessing
{

public void UpdateNumArray()
{

// Here I want to call the SetFormData()function in Form1 but it won't recognise it - why???

Form1.SetFormData();

}

}
}


Thanks in advance for your help - Please feel free to comment on what you think to the structure of the program - if you think I have made any other fundamental mistakes











Haz
GeneralRe: passing data to a textbox on a form using a method in a class Pin
haz1322-Jul-06 5:27
haz1322-Jul-06 5:27 
GeneralRe: passing data to a textbox on a form using a method in a class Pin
Christian Graus22-Jul-06 12:06
protectorChristian Graus22-Jul-06 12:06 
QuestionCopying files with long path names Pin
GazzaJ19-Jul-06 11:50
GazzaJ19-Jul-06 11:50 
AnswerRe: Copying files with long path names Pin
RizwanSharp19-Jul-06 12:08
RizwanSharp19-Jul-06 12:08 
GeneralRe: Copying files with long path names Pin
GazzaJ19-Jul-06 22:10
GazzaJ19-Jul-06 22:10 
AnswerRe: Copying files with long path names Pin
Gavin Roberts20-Jul-06 0:25
Gavin Roberts20-Jul-06 0:25 
GeneralRe: Copying files with long path names Pin
GazzaJ20-Jul-06 0:48
GazzaJ20-Jul-06 0:48 
Questionabout writing some thing into the input stream of any running process Pin
hardikvaishnav19-Jul-06 11:15
hardikvaishnav19-Jul-06 11:15 
AnswerRe: about writing some thing into the input stream of any running process Pin
led mike19-Jul-06 11:42
led mike19-Jul-06 11:42 
QuestionShow small TM sign on title bar title text Pin
Saamir19-Jul-06 9:31
Saamir19-Jul-06 9:31 
AnswerRe: Show small TM sign on title bar title text Pin
Paul Brower19-Jul-06 9:36
Paul Brower19-Jul-06 9:36 
GeneralRe: Show small TM sign on title bar title text Pin
Dan Neely19-Jul-06 9:39
Dan Neely19-Jul-06 9:39 
GeneralRe: Show small TM sign on title bar title text Pin
RizwanSharp19-Jul-06 9:44
RizwanSharp19-Jul-06 9:44 
Questionhow can I sum ... Pin
mostafa_h19-Jul-06 8:22
mostafa_h19-Jul-06 8:22 
AnswerIf you are using crystal reports Pin
Ennis Ray Lynch, Jr.19-Jul-06 8:28
Ennis Ray Lynch, Jr.19-Jul-06 8:28 
GeneralRe: If you are using crystal reports Pin
mostafa_h19-Jul-06 10:09
mostafa_h19-Jul-06 10:09 
GeneralDon't forget about SQL Injection Pin
Ennis Ray Lynch, Jr.19-Jul-06 10:12
Ennis Ray Lynch, Jr.19-Jul-06 10:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.