A Alee Member Joined Feb 26, 2009 Messages 5 Programming Experience Beginner Feb 26, 2009 #1 hi how i can jump from one form to another form in same project in vb.net 2008
cjard Well-known member Joined Apr 25, 2006 Messages 7,081 Programming Experience 10+ Feb 26, 2009 #2 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 Upvote 0 Downvote
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
A Alee Member Joined Feb 26, 2009 Messages 5 Programming Experience Beginner Feb 26, 2009 #3 i know that but i want to create a button in form1 that when i click on it,the form2 open. Upvote 0 Downvote
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,846 Location Norway Programming Experience 10+ Feb 27, 2009 #4 Put this in the buttons Click event handler: VB.NET: TheOtherForm.Show() Upvote 0 Downvote
R Retrophobe Member Joined Feb 27, 2009 Messages 6 Location London, England Programming Experience 3-5 Feb 27, 2009 #5 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: Me.hide() just a thought, might be relevant. Upvote 0 Downvote
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: Me.hide() just a thought, might be relevant.
A Alee Member Joined Feb 26, 2009 Messages 5 Programming Experience Beginner Feb 28, 2009 #6 thanks a lot . Upvote 0 Downvote