Passing information between forms

I am sure you can find plenty of info on the net but I will get you started with some ideas.

static variables are known and can be accessed by all forms of a program, if they are public that is.

But just public variables need the form name first with a dot and then the variable you want to access. Ex:
Form1.myVariable= "Hi"
 
Back
Top