Cancelling a long running process in VB6.0 without DoEvents? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:15:56Z http://stackoverflow.com/feeds/question/155517 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents 7 Cancelling a long running process in VB6.0 without DoEvents? Stuart Helwig 2008-09-30T23:05:08Z 2009-10-13T17:01:33Z <p>Is it possible to cancel out of a long running process in VB6.0 without using DoEvents?</p> <p>For example:</p> <pre><code>for i = 1 to someVeryHighNumber ' Do some work here ' ... if cancel then exit for end if next Sub btnCancel_Click() cancel = true End Sub </code></pre> <p>I assume I need a "DoEvents" before the "if cancel then..." is there a better way? It's been awhile...</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/155527#155527 5 Answer by TheSoftwareJedi for Cancelling a long running process in VB6.0 without DoEvents? TheSoftwareJedi 2008-09-30T23:09:51Z 2008-10-01T00:41:23Z <p>Is the "for" loop running in the GUI thread? If so, yes, you'll need a DoEvents. You may want to use a separate Thread, in which case a DoEvents would not be required. You <a href="http://www.freevbcode.com/ShowCode.Asp?ID=1287" rel="nofollow">can do this in VB6</a> (not simple).</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/155539#155539 8 Answer by GSerg for Cancelling a long running process in VB6.0 without DoEvents? GSerg 2008-09-30T23:13:19Z 2008-09-30T23:13:19Z <p>No, you have to use DoEvents otherwise all UI, keyboard and Timer events will stay waiting in the queue.</p> <p>The only thing you can do is calling DoEvents once for every 1000 iterations or such.</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/155541#155541 3 Answer by MusiGenesis for Cancelling a long running process in VB6.0 without DoEvents? MusiGenesis 2008-09-30T23:14:32Z 2008-09-30T23:14:32Z <p>You could start it on a separate thread, but in VB6 it's a royal pain. DoEvents should work. It's a hack, but then so is VB6 (10 year VB veteran talking here, so don't down-mod me).</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/156158#156158 3 Answer by Bob for Cancelling a long running process in VB6.0 without DoEvents? Bob 2008-10-01T03:39:14Z 2008-10-01T03:39:14Z <p>Divide up the long-running task into quanta. Such tasks are often driven by a simple loop, so slice it into 10, 100, 1000, etc. iterations. Use a Timer control and each time it fires do part of the task and save its state as you go. To start, set up initial state and enable the Timer. When complete, disable the Timer and process the results.</p> <p>You can "tune" this by changing how much work is done per quantum. In the Timer event handler you can check for "cancel" and stop early as required. You can make it all neater by bundling the workload and Timer into a UserControl with a Completed event.</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/160893#160893 16 Answer by Joel Spolsky for Cancelling a long running process in VB6.0 without DoEvents? Joel Spolsky 2008-10-02T04:35:45Z 2008-10-02T04:35:45Z <p>Nope, you got it right, you definitely want DoEvents in your loop.</p> <p>If you put the <code>DoEvents</code> in your main loop and find that slows down processing too much, try calling the Windows API function <code>GetQueueStatus</code> (which is much faster than DoEvents) to quickly determine if it's even necessary to call DoEvents. <code>GetQueueStatus</code> tells you if there are any events to process.</p> <pre><code>' at the top: Declare Function GetQueueStatus Lib "user32" (ByVal qsFlags As Long) As Long ' then call this instead of DoEvents: Sub DoEventsIfNecessary() If GetQueueStatus(255) &lt;&gt; 0 Then DoEvents End Sub </code></pre> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/206791#206791 1 Answer by Shane for Cancelling a long running process in VB6.0 without DoEvents? Shane 2008-10-15T22:36:53Z 2008-10-15T22:36:53Z <p>This works well for me when I need it. It checks to see if the user has pressed the escape key to exit the loop.</p> <p>Note that it has a really big drawback: it will detect if the user hit the escape key on ANY application - not just yours. But it's a great trick in development when you want to give yourself a way to interrupt a long running loop, or a way to hold down the shift key to bypass a bit of code.</p> <pre><code>Option Explicit Private Declare Function GetAsyncKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer Private Sub Command1_Click() Do Label1.Caption = Now() Label1.Refresh If WasKeyPressed(vbKeyEscape) Then Exit Do Loop Label1.Caption = "Exited loop successfully" End Sub Function WasKeyPressed(ByVal plVirtualKey As Long) As Boolean If (GetAsyncKeyState(plVirtualKey) And &amp;H8000) Then WasKeyPressed = True End Function </code></pre> <p>Documentation for GetAsyncKeyState is here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms646301(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646301(VS.85).aspx</a></p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/413935#413935 1 Answer by MarkJ for Cancelling a long running process in VB6.0 without DoEvents? MarkJ 2009-01-05T17:55:20Z 2009-03-03T12:52:52Z <p>Here's an article on using the <a href="http://msdn.microsoft.com/en-us/library/aa719109.aspx" rel="nofollow">.NET BackgroundWorker</a> component to run the task on another thread from within VB6.</p> http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents/1561574#1561574 0 Answer by MarkJ for Cancelling a long running process in VB6.0 without DoEvents? MarkJ 2009-10-13T17:01:33Z 2009-10-13T17:01:33Z <p>Here is a pretty standard scheme for asynchronous background processing in VB6. (For instance it's in Dan Appleman's <a href="http://rads.stackoverflow.com/amzn/click/1562765760" rel="nofollow">book</a>.) You create a separate ActiveX EXE to do the work: that way the work is automatically on another thread, in a separate process (which means you don't have to worry about variables being trampled). </p> <ul> <li>The VB6 ActiveX EXE object should expose an event CheckQuitDoStuff(). This takes a ByRef Boolean called Quit. </li> <li>The client calls StartDoStuff in the ActiveX EXE object. This routine starts a Timer on a hidden form and <strong>immediately returns</strong>. This unblocks the calling thread. The Timer interval is very short so the Timer event fires quickly. </li> <li>The Timer event handler disables the Timer, and then calls back into the ActiveX object DoStuff method. This begins the lengthy processing. </li> <li>Periodically the DoStuff method raises the CheckQuitDoStuff event. The client's event handler checks the special flag and sets Quit True if it's necessary to abort. Then DoStuff aborts the calculation and returns early if Quit is True. </li> </ul> <p>This scheme means that the client doesn't actually need to be multi-threaded, since the calling thread doesn't block while "DoStuff" is happening. The tricky part is making sure that DoStuff raises the events at appropriate intervals - too long, and you can't quit when you want to: too short, and you are slowing down DoStuff unecessarily. Also, when DoStuff exits, it must unload the hidden form.</p> <p>If DoStuff does actually manage to get all the stuff done before being aborted, you can raise a different event to tell the client that the job is finished.</p>