I know that I can use DoEvents to allow the user to cancel a process or loop, but is it possible to pause the loop or process dead in its tracks until the user chooses to resume?
-JTBorton
Well, You can try banging your head against the wall, but you just end up with lost-time injuries and damaged equipment. [M. Passman]
Code:
For Each itmTag In lvwTagList.ListItems
DoEvents
If blnCancel = True Then: GoTo Proc_exit
[Do Stuff]
Next itmTag
-JTBorton
Well, You can try banging your head against the wall, but you just end up with lost-time injuries and damaged equipment. [M. Passman]