ok now that i have a random roll generated, i would like the user to be able to guess weather the next roll will be above or below the second roll. I have created two command buttons called cmdAbove and cmdBelow
they should be able to click on their guess
If anyone could modify my code to do this it would be amazing
Thank you!!



Private Sub cmdStart_Click()
Picture1.Cls
Dim randomvalue As Integer
randomvalue = Int(Rnd * 6)
Picture1.Picture = Image1(randomvalue).Picture
MsgBox "Will the next roll be above or below the orignal roll?"


End Sub