R
Rick Mogstad
R said:FormSomething.TextBox1.Text = "Some text"
But, FormSomething is not the same form as Form1, I can't see the text.....
Is there a way around it or am I stuck?
I assume that Form1 is your startup form? Perhaps use a sub Main as your startup. The problem is
that The form you see is a different instance than FormSomething. They are both of type Form1,
but different instances. If you call the FormSomething.Show then you will see that FormSomething
will pop up, and the text will be correct.