The Stupidest question of all

hitechoutlaw

Regular
Joined
Mar 22, 2003
Messages
77
Location
USA
ok after i searched the web, msdn, and looked at sample projects, i have yet to find out how to make another form show up.

i've tried:
form2.show()
form2.definstance.show()

none of them worked, how do i do this?
 
What you are trying is basicall correct.

Is form2 instantiated?
Are the locatoin properties of form2 set correctly?

Dim form2 as new form2

form2.show()

should work. At least it does in my app.
 
Back
Top