its very easy game in visual basic to count the no of click on a command button
A simple game in visual basic 6, you can see this game in FACE BOOK , its count the click on the button in 0 seconds , as much you click in 10 sec you wins.. nice and easy.
very cool game
CODING START
Private Sub Command1_Click()
If turn <= 1 Then
Timer1.Enabled = True
End If
turn = turn + 1
Label1.Caption = turn
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
If Label3.Caption >= 0 Then
Label3.Caption = Val(Label3.Caption) + 1
End If
If Label3.Caption = 10 Then
Timer1.Enabled = False
MsgBox “time end”
End If
End Sub
CODES END
click game in vb.rar
Download
sky drive link

