C
Chris
What would be the simplest way to make an app wait for one process to
finish before starting the next process?
Example
///
FileCopy(strPath & "test.mdb", strPath & "live.mdb")
Wait(Until FileCopy is Done) <---------------That is what I'm
looking for
Shell(someapp.exe)
///
I want someapp.exe to start only after the file has been copied
completely, not run asynchronously. I've done some reading on
CreateProcess and WaitForSingleObject but they seem way more
complicated(lengthy) then what I need for this problem. In my little
program I'll need this command 60 - 80 times is why I'm looking for
brevity.
Thanks for any ideas.
Chris
Hello World - Check
First App - Working on it
finish before starting the next process?
Example
///
FileCopy(strPath & "test.mdb", strPath & "live.mdb")
Wait(Until FileCopy is Done) <---------------That is what I'm
looking for
Shell(someapp.exe)
///
I want someapp.exe to start only after the file has been copied
completely, not run asynchronously. I've done some reading on
CreateProcess and WaitForSingleObject but they seem way more
complicated(lengthy) then what I need for this problem. In my little
program I'll need this command 60 - 80 times is why I'm looking for
brevity.
Thanks for any ideas.
Chris
Hello World - Check
First App - Working on it