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


|
|
| 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. |


|
|
| VARIABLE |
LEARN TO DECLARE AND DEFINE VARIABLES |
|
| Learn to declare and define different types of variables in Visual Basic. |


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


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


|
|
| 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. |


|
|
| 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 BASE MODULE |
|
| Learn to make your variables and definitions globally accessable
for the entire project by using Base 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. |


|
|
| DRIVE |
DRIVE, FOLDER AND FILE |
|
| Handle drives, folders and list out files. |

|
|
| TEST MODEL |
TEST MODEL FOR PAYPAL |
|
| This product can be transfered to you through PayPal. |

|
|
| SQL DATABASE DEMO |
DEMO OF HOW TO HANDLE A SQL DATABASE |
|
| Use, search, add, edit and delete posts in an Access Database
with the use of SQL.. |

|
| Source code not included! |
|
| LOCAL NETWORK CHAT DEMO |
DEMO OF LOCAL NETWORK CHAT |
|
| Client Server, Local Network Winsock TCP Chat.. |

|
| Source code not included! |
|
| PUBLIC INTERNET CHAT DEMO |
DEMO OF PUBLIC INTERNET CHAT |
|
| Multiple Clients Server Winsock Public Internet Chat. |

|
| Source code not included! |
|
| RED AND BLUE |
NETWORK 2 PLAYER DEMO |
|
| This is not a game..
This demo sends and recieves positions.
Start a server and connect to it with a client.
Control the server "player" with the W, A, S and D keys. Control the client "player" with the arrow keys. |

|
| Source code not included! |
|
| MULTI RED AND BLUE |
NETWORK MULTI PLAYER DEMO |
|
| This is not a game..
Send information between clients through the server.
Start a server and connect up to 4 clients.
Control your "player" with the arrow keys.
See information and position of the other clients. |

|
| Source code not included! |
|
| WEB CAMERA DEMO |
CAPTURE YOUR WEB CAM |
|
| With this demo you can capture your web camera. |

|
| Source code not included! |
|
| PACMAN |
MY FIRST GAME |
|
| The first game I ever created in Visual Basic with WIN32 Api was a version of the classic Pacman.
Control Pacman with the arrow keys. |

|
| Source code not included! |
|
| TETRIS |
MY SECOND GAME |
|
| The second game I created was a version of Tetris.
Tetris was also created in Visual Basic with WIN32 Api.
Control Tetris with the arrow keys. |

|
| Source code not included! |
|
| BILLY BLUE FLAME |
MY THIRD GAME + MAPEDITOR |
|
| The third game I created was a Super Mario like platform game with level editor.
Billy Blue Flame was created in Visual Basic with WIN32 Api.
Control Billy Blue Flame with the arrow keys. |

|
| Source code not included! |
|
| MAPEDITOR |
MAPEDITOR FOR BILLY BLUE FLAME |
|
| The level editor for Billy Blue Flame.
With this "tool" you can load, save and edit levels for
Billy Blue Flame. |

|
| Source code not included! |
|