Pages

Friday 5 July 2013

VB 11 Tutorial 1: Getting Started

VB 11 Tutorial 1: Getting Started

Welcome to the first class.

Step 1: you will need a copy of Visual Studio 2012, just download a trial for now

Step 2: after you have installed, click on New, then a dialog will open.

Step 3: then click on Windows then Console Application.

Code:
Basics.

' anything after ' is a statement.


Module SubNew

Sub Main() ' Starting Sub Routine
Console.WriteLine("Hello World") ' we type to the console with Hello World, is as string
End Sub


End Module

No comments:

Post a Comment