| Author Details |
|---|
| All Tutorials by tutorial-suite |
|
|---|
Display input in a Label
In this tutorial we will code a application to display anything you type into a textbox on to a label.
In this tutorial we will thogether code a application to display anything you type into a textbox on to a label
| | Hits:352 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Introduction to Visual Basic |
|
|
|---|
Random Numbers
In this tutorial we will take a look at a simple function that allows us to generate random numbers.
| | Hits:128 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Miscellaneous |
|
|
|---|
Writing a Internet shortcut file
In this tutorial we will together code a application that can write a Internet shortcut file in Visual Basic.
| | Hits:115 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Miscellaneous |
|
|
|---|
Saving Settings into the registry
It's often very useful to be able to save settings into the registry and in this tutorial I will show you how to save settings for your program into the registry in a very easy manner.
| | Hits:85 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Miscellaneous |
|
|
|---|
Card Deck and Shuffle
How to create a virtual card deck and shuffle it.
While I was creating my black jack game I wanted to make the user
feel like they were using an actual deck of cards. To make this
illusion even more accurate I decided that I would have the computer
keep track of which cards had been used and after all cards had been
used I wanted the deck to be shuffled. Therefore I had to figure out a easy
way to shuffle the deck. That is how I came up with the following method:
First I made an image control array called imgCards that went from
1 to 52. In this array I filled slot (1) with the ace of clubs, slot (2) with
the two of clubs, and so on I continued this process until I had all 52 cards
put into their corresponding slots. This would make the array look like this:
| | Hits:247 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Miscellaneous |
|
|
|---|
Error handler
In this tutorial we will teach you to add a errorhandler to your applications. It's very easy and it saves lots of time when debugging your applications.
| | Hits:220 Rate: 0.0(out of 5) Vote:0 Submit Date :2006-03-27 Rate It | Error | Review | | | Category: Home > Visual Basic > Error Handling |
|