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:
TheOtherForm.Show()
 
Back
Top