View Single Post
Old 05-20-2004, 06:35 AM   #8 (permalink)
hrdwareguy
"Officer, I was in fear for my life"
 
hrdwareguy's Avatar
 
Location: Oklahoma City
Why don't you have program A close as soon as it calls the batch file?

Your batch file could look something like this:

Code:
pause
cd d:\2ndprogramdirectory
call 2ndprogram.exe parameter
cd\1stprogramdirectory
1stprogram.exe
The pause will force you to press any key before launching program B. This will ensure program A has time to completely exit. The Call command waits until the command on that line has completed before continuing with the batch file. In this case, it would run program B and not continue until program B is finished, then it will run program A. This should work for you.
__________________
Gun Control is hitting what you aim at

Aim for the TFP, Donate Today
hrdwareguy is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47