I\'m working on a C# program, and right now I have one Form
and a couple of classes. I would like to be able to access some of the Form
controls (s
You need access to the object.... you can't simply ask the form class....
eg...
you would of done some thing like
Form1.txtLog.Text = "blah"
instead of
Form1 blah = new Form1();
blah.txtLog.Text = "hello"