Originally posted by PS2_-\'_\'-_PS2
If randomnum = 41 = 50 Then
img5.Visible = True
End If
End Sub
Perhaps that extra "=" sign could be a problem, or a typo on your part. Why don\'t you use ElseIf statements?
Do you want to get numbers through 41 and 50, or are you subtracting 41 and 50? If you just want the numbers do
If randomnum >= 41 And randomnum <=50 Then
I\'m not sure what your trying to do though.