|
This a professional-looking slot machine resembles the real slot machines played in the casinos in Las Vegas! In this program, the most important part of the program is inserting three image boxes into the form and program them so that they will display a set of three different pictures randomly when the user presses on the spin button. Therefore, it involve a randomization process. Next, a timer needs to be incorporated into the procedures so that the program can produce animated effects. In addition, you can also insert the Microsoft Multimedia Control so that it can play sounds in synchronization with the spinning of the slot machine as well as when the player hits the jackpot.
The Interface
|
The most important part of the program is the spin procedure, which is
|
The three random variables a, b and c will be randomly assigned the values 1, 2 and 3 using the RND function. Based on these three random numbers, three different pictures will be loaded into the three image boxes randomly using the LoadPicture method. Animated effects are created by putting the above procedure under the control of Timer1, which will call the spin procedure after every interval until it fulfills a certain condition. Sounds are also added using the Microsoft Multimedia Control to make the game more realistic and interesting. The amount won is controlled by the If….Then statements