jump from one form to another?

Alee

Member
Joined
Feb 26, 2009
Messages
5
Programming Experience
Beginner
hi
how i can jump from one form to another form in same project in vb.net 2008
 
I tend to use the mouse. Sometimes I double click in the Solution Explorer, and sometimes i right click the code and choose View Designer
 
Put this in the buttons Click event handler:
VB.NET:
Expand Collapse Copy
TheOtherForm.Show()
 
Thought this might help too. if you want form1 to be hidden when you open form2 then put the code below after John's line.

VB.NET:
Expand Collapse Copy
Me.hide()

just a thought, might be relevant. :)
 
Back
Top