68
Come on Jingda.
68
its going to be fun.
72.....
74
Of course.
74
Hi, Jingda. How are u?
104
Bye for now
146
Jingda, need some more reply quickly for decreasing the no.
162
Come on team B.
See the codes. I have done modification something on your Timer1_Timer() event and added form_load() event
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
lblascii.Caption = KeyCode
If KeyCode = 13 Then
Timer1.Enabled = True
End If
If KeyCode = 8 Then
Timer1.Enabled = False And MsgBox("time elapsed =" & time.Caption)
End If
End Sub
Private Sub Timer1_Timer()
time.Caption = Val(time.Caption) + 1
End Sub
Private Sub Form_Load()
Timer1.Enabled = False
Timer1.Interval = 1000 '1000 for 1 second
End Sub