can someone look and tell me why this aint working please
when my reelspintimer stops all i get is the msgbox "Lose", vbOKOnly, "lose" msg and not the win msg.Code:Private Sub ReelSpinTimer_Timer() If ReelSpinTimer.Enabled = False Then If imgReel1b.Picture = LoadResPicture(110, vbResBitmap) And imgReel2b.Picture = LoadResPicture(110, vbResBitmap) And imgReel3b.Picture = LoadResPicture(110, vbResBitmap) Then MsgBox "Win", vbOKOnly, "win" Else MsgBox "Lose", vbOKOnly, "lose" End If End If End Sub
thanks for your help




Reply With Quote