'
'add timer control to form
'set interval to 1500 and enabled = false
Code:
Option Explicit
Dim C
Private Sub Command1_Click()
Timer1.Enabled = True
'
End Sub
Private Sub Timer1_Timer()
'
C = C + 1
Text1 = "Work is great" & " " & C
If C >= 11 Then
Leave a comment: