show/hide this revision's text 3 deleted 151 characters in body

Is the "for" loop running in the GUI thread? If so, yes, you'll need a DoEvents. However, this design will likely really lock up your GUI. You are better off using may want to use a separate Thread, in which case a DoEvents would not be required.

EDIT: Removed Thread.Abort comment. However, the spawning another thread opinion stays, and you You can do this in VB6 (not simple).

show/hide this revision's text 2 added 129 characters in body

Is the "for" loop running in the GUI thread? If so, yes, you'll need a DoEvents. However, this design will likely really lock up your GUI. You are better off using a separate Thread, in which case a DoEvents would not be required(and a malicious .

EDIT: Removed Thread.Abort would even work - but I didn't say that)comment. However, the spawning another thread opinion stays, and you can do this in VB6.

show/hide this revision's text 1

Is the "for" loop running in the GUI thread? If so, yes, you'll need a DoEvents. However, this design will likely really lock up your GUI. You are better off using a separate Thread, in which case a DoEvents would not be required (and a malicious Thread.Abort would even work - but I didn't say that).