| VB.NET CONSOLE OUTPUT |
DISPLAY OUTPUT IN VISUAL BASIC .NET |
|
| This tutorial demonstrates how to print output to a console window in Visual Basic .Net.
Console.WriteLine() |


|
|
| VB.NET CONSOLE VARIABLE |
HANDLE VARIABLES IN VISUAL BASIC .NET |
|
| This tutorial demonstrates how to declare and define variables in Visual Basic .Net and print them to a console window. |


|
|
| VB.NET CONSOLE INPUT |
HANDLE INPUT IN VISUAL BASIC .NET |
|
| This tutorial demonstrates how to recieve keyboard input in Visual Basic .Net.
Console.ReadLine() |


|
|
| PROJECT |
CREATE YOUR FIRST VISUAL BASIC .NET PROJECT |
|
| In this basic tutorial you will learn how to create your first empty Visual Basic .Net project. |

|
|
| VARIABLE |
LEARN TO DECLARE AND DEFINE VARIABLES |
|
| This tutorial demonstrates how to declare and define variables in Visual Basic .Net and display them in textboxes. |


|
|
| BUTTON AND TEXTBOX |
CREATE YOUR FIRST BUTTON AND TEXTBOX |
|
| This turorial shows you how to use a button and by clicking it you will get a message in a textbox. |


|
|
| PROCEDURE |
LEARN HOW TO USE PROCEDURES |
|
| Learn two different ways to use procedures in Visual Basic .NET. |


|
|
| FUNCTION |
LEARN HOW TO USE FUNCTIONS |
|
| Learn two different ways to use functions in Visual Basic .Net. |


|
|
| IF AND IF ELSE |
LEARN HOW TO USE THE IF STATEMENT |
|
| The if-statement is the first thing i learned in programming. If? is your questions to the application, so that you can decide what is going to happen next.. if a counter is 10 then set it back to 0 if you don't have any money left, you can't buy that dvd-player. if your character fall more than 3 units in a game, then he loses energy etc. |


|
|
| SELECT CASE |
LEARN HOW TO USE SELECT CASE |
|
| Select case is also known as switch case. Learn how to use select case. |


|
|
| FOR NEXT |
LEARN HOW TO USE A FOR LOOP |
|
| You should always use a for loop when the amount of repetitions is known. Learn how to use a for loop.
|


|
|
| DO WHILE |
LEARN HOW TO USE A DO WHILE LOOP |
|
| Learn how to use a do while loop. |


|
|
| ARRAY |
LEARN HOW TO USE DIFFERENT ARRAYS |
|
| Learn to use different arrays in Visual Basic .Net. |


|
|
| TIMER & COUNTER |
LEARN HOW TO USE A TIMER |
|
| Timers are the backbone in any good application they make it possible to decide when things will happen in millisecounds by using timers and counters you gain control |


|
|
| MODULE |
LEARN HOW TO USE A MODULE |
|
| Learn to make your variables and definitions globally accessable for the entire project by using Modules.. |


|
|
| CLASS |
LEARN HOW TO USE CLASSES |
|
| Learn to use a Class with Private and Public variables. Handle the Classes Private and Public variables with the use of a Class object, and Get/Set-Functions. |


|
|