show/hide this revision's text 5 added 2 characters in body; edited tags

Is it possible to cancel out of a long running process in VB6.0 without using DoEvents?

For example:

for i = 1 to someVeryHighNumber
    ' Do some work here '
    ...

    if cancel then
        exit for
    end if
next

Sub btnCancel_Click()
    cancel = true
End Sub

I assume I need a "DoEvents" before the "if cancel then..." is there a better way? It's been awhile...

show/hide this revision's text 4 changed tag for consistency
show/hide this revision's text 3 I am not American ;-)

Canceling Cancelling a long running process in VB6.0 without DoEvents?

show/hide this revision's text 2 typo
show/hide this revision's text 1