Click here to Skip to main content
15,922,419 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am just starting with visual basic and I am working on an application. In the main form I have a button and I want to create an click event to go to the form.

how can that be done
Posted
Updated 22-Mar-11 8:07am
v2

You could find several useful examples at http://windowsclient.net/downloads/folders/applications/default.aspx[^]. I believe that some of those cover the issue you asked along with several other examples.
 
Share this answer
 
Learning a new skill is always difficult. However, do not ask around on the internet right away. You might learn much more when you read a book and go at it one step at a time. Understand the basics before you come ask questions online.

The basic steps for creating and showing a form are:
Instantiate the form.
Call the form.Show method.
VB
Dim frm As New myForm
frm.Show


It's that easy :)
Good luck with your VB study!
 
Share this answer
 
The best for basic introduction is in Youtube
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900