Tagged Questions
3
votes
3answers
1k views
How to wait for a shell process to finish before executing further code in VB6
I have a small VB6 app in which I use the Shell command to execute a program. I am storing the output of the program in a file. I am then reading this file and putting the output on the screen using a ...
1
vote
1answer
713 views
Why does WaitForSingleObject(INVALID_HANDLE_VALUE, INFINITE) block?
Why does
HANDLE mutexHandle = INVALID_HANDLE_VALUE;
WaitForSingleObject(mutexHandle, INFINITE);
block? It does not return with an error message. Checking the handle for INVALID_HANDLE would be ...