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).
