multiple forms

  • Thread starter Kenneth Windish
  • 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
 
D

Daniel Moth

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

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

Cheers
Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top