Resolved How to control other form from a main form?

crystaluz

Well-known member
Joined
Feb 17, 2009
Messages
55
Programming Experience
Beginner
Hello.. How to control other form from a main form? For example :

I want to change background color in Form2 after a button in Form1 is clicked. Thank you..
 
Last edited:
FYI, that will work only if they opened it as the default form.
VB.NET:
Form2.Show
'and not 
Dim f As New Form2
f.Show
 
Back
Top