How can I make this dice work?
Hi,
I am making a game in VB. I have an image box which will be a dice (ImgDice) - which the player can use by clicking a button marked "roll". I have 6 other image boxes - one for each number with bitmaps loaded in - they are called ImgDice1 .. through to ImgDice6.
What I want to know is the code that I can attach to the `roll` button o RANDOMLY load up one of the dice numbers, but I want it to be completely random.
Any code for this...
Thanks
Mark
Re: How can I make this dice work?
You should better make an imagebox array with indexes from 0 to 5.
then write the following:
private Sub Form_Load()
Randomize
End Sub
private Sub cmdRoll_Click()
imgDice(CInt(Rnd() * 6 )).Visible=true
End Sub
instead of the Visible=True you can show the image you want in any other way.
----------
The @host is everywhere!
----------