Everything else for my major is finished, except for this last little bit of one of my modules that I simply can't figure out :S. I need the module to check wether or not Num01 is divisable by Num02.
I spent the last 2 school weeks fiddling around with various methods and nothing seemed to...
optDive stands for for Option Button / Division / Easy
ie. if optDive = true then the questions asked are easy (dividing # 1-9 into # 1-99)
whereas if optDivm = true then the questions asked are of medium difficulty (dealing with # 99-99). optDivh... well u get the picture :)
the lines...
still not working, now it reckons I'm trying to divide by 0, (run-time error '11' - Division by zero)
thanx for trying though :)
ok, tryed this
Private Sub cmdNext_Click()
cmdNext.Caption = "&Next Question"
If optDive = True Then
lblNum1.Caption = Empty
lblNum2.Caption =...
This is what I have;
If optDive = True Then
lblNum1.Caption = Empty
lblNum2.Caption = Empty
lblNum1.Caption = Int((100 - 1) * Rnd + 1)
lblNum2.Caption = Int((10 - 1) * Rnd + 1)
End If
I need the program to check if Num1 / Num2 gives an answer that includes...