up vote 2 down vote favorite
share [g+] share [fb]

I have a long running process in VB6 that I want to finish before executing the next line of code. How can I do that? Built-in function? Can I control how long to wait?

Trivial example:

Call ExternalLongRunningProcess
Call DoOtherStuff

How do I delay 'DoOtherStuff'?

link|improve this question

Can you give some more details? Is this an external process and, if so, how are you calling it? – Ben Hoffstein Sep 18 '08 at 18:10
I think you are refering to the keystroke CTRL-P like is it offered in MS Access? – Pascal Paradis Sep 18 '08 at 18:15
I'm working on a legacy app and my vb skills are rusty so apologies if question not clear. Hopefully, it is a bit clearer now. – Ray Vega Sep 18 '08 at 18:41
feedback

5 Answers

up vote 5 down vote accepted

VB.Net: I would use a WaitOne event handle.

VB 6.0: I've seen a DoEvents Loop.

Do
     If isSomeCheckCondition() Then Exit Do
     DoEvents
Loop

Finally, You could just sleep:

Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Sleep 10000
link|improve this answer
DoEvents is what you'd use to return control to GUI during long running processes. – Sean Gough Sep 18 '08 at 18:30
feedback

While Nescio's answer (DoEvents) will work, it will cause your application to use 100% of one CPU. Sleep will make the UI unresponsive. What you need is a combination of the two, and the magic combination that seems to work best is:

Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

While IsStillWaitingForSomething()
    DoEvents
    DoEvents
    Sleep(55)
Wend

Why two DoEvents, and one sleep for 55 milliseconds? The sleep of 55 milliseconds is the smallest slice that VB6 can handle, and using two DoEvents is sometimes required in instances when super-responsiveness is needed (not by the API, but if you application is responding to outside events, SendMessage, Interupts, etc).

link|improve this answer
milliseconds I think you meant. – Hamish Smith Sep 21 '08 at 2:54
Absolutely, milliseconds... – Kris Erickson Sep 21 '08 at 19:07
I'm voting you up for reminding me how happy I am not to have to do VB6 anymore :-) – Matt Sep 21 '08 at 19:16
I'm voting you up for delivering just what this site excels in. Easy to find, pertinent and accurate advice. @Matt, I would be happy not to be using VB6 either, but my client needs it so I'm going to step up. And thanks to Kris, I didn't have to fuss around for an hour trying to remember the precise combination of 'do events' and sleep that I forgot 10 years ago. Thanks Kris, it worked like a charm! – William Oct 11 '11 at 15:50
feedback

How To Determine When a Shelled Process Has Terminated

If you're calling an external process then you are, in effect, calling it asynchronously. Refer to the above MS Support document for how to wait until your external process is complete.

link|improve this answer
feedback

Break your code up into 2 processes. Run the first, then run your "long running process", then run the second process.

link|improve this answer
feedback

Run your long-running process in the middle of your current process and wait for it to complete.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.