Re: kernel32 lib problems
Hi,
I would guess 'Secuirity' problems!. NT is more stringent than '95.
You have not mentioned as to how your are starting the other process (DOS program). Check out ShellExecute (API)instead of just Shell (VB).
Also what you are trying to do can be accomplished by WaitforSingleObject API. and the process goes into a 'signaled' state when it terminates. This call is performance-tuned too.
Ravi
Re: kernel32 lib problems
I was using shell. I'll try shellexecute.
By the way, where can I find some information about the API declarations?
Thanks,
Rik
Re: kernel32 lib problems
Searching for the waitforsingleobject function,is the msdn library I found a solution. (Tip 173: http://msdn.microsoft.com/library/te...dn_msdn173.htm).
Thanks for the tip on the waitforsingleobject function.