Your first application
Hello! In this tutorial I'll teach you how to make your very first application in visual basic !
Requirements:
*Windows
*Visual Studio 2008/2010 or visual basic 2008/2010
*Internet connection
Tutorial:
1. Download and install visual studio if you don't already have it.
www.microsoft.com/express/vb
2.Start Visual Studio 2008/2010
3. Click file (upper left corner) and select new => project
4.Create a new visual basic => windows form application
5. Call it Hello World and press 'OK' .
6.Add a new button to your form.
7. Click the new button on your form twice and you should get in the coding section.
8. Between Private Sub and End sub,
Enter the followng Code:
MsgBox("Hello World!")
9. Now press the green arrow or press F5.
10. The application should now start.
11. Press the button inside the form
Thats it !