multiple forms

  • Thread starter Thread starter Kenneth Windish
  • Start date Start date
K

Kenneth Windish

I have a project w/multiple forms, but when I try to call one form from the
other all the options I get is:
form2.controlcollection
form2.mouseButtons
form2.MousePosition

no form2.show or form2.definstanstance

what am I doing wrong?

TAhanks
Ken
 
You have to create the forms.
form2 f = new form2();
f.Show();

Dim f As New form2()
f.Show()

Cheers
Daniel
 
Back
Top