Option Explicit
Dim blnStop As Boolean
Private Sub Command1_Click()
Dim lngCnt As Long
For lngCnt = 1 To 10000000
Label1.Caption = lngCnt
DoEvents
If blnStop Then
blnStop = False
Exit For
End If
Next lngCnt
End Sub
Private Sub Command2_Click()
blnStop = True
End Sub