Access Controls or Variables on Other Forms: Part II, Attack of the Forms
Okay, well anyways, you probably remember I posted a thread about this.
But....what if I want to access the methods and properties on a form that hasn't been launched from the current form. Let's say there is an options form and a customization form, neither of which are the default forms. I want the options form to modify something, such as background color, of the customize form. How would I go about that?
I used form2 instance = new form2(this);
instance.Show();
but I can't do that because they arent laucnhed from one another...

