Wednesday 23 January 2013

VB.net Tutorial 1

Getting Started:

Please make sure you have Visual Studio, you can get visual studio from Here or Here. Now that we have Visual Studio we will begin by making a New project.

Step 1:
















Then select Windows Forms Application














Step 2

Now you will see a form.



















Step 3

Now here is the tricky bit, Double Click on the Grey Background of the form, you will then see a Code Snippet that handles the form_load.

Type the following code.

Dim Answer As String
Answer = "Hello World"
MsgBox(Answer)

Thats it, welcome to Vb.net

No comments:

Post a Comment