how to return from an applcation

  • Thread starter Thread starter Jean Pierre Daviau
  • Start date Start date
J

Jean Pierre Daviau

Hi,

How can I return from a batch calling an application?
--- file.cmd---
start "C:\Program Files\EasyPHP1-8\EasyPHP.exe"
-------
===========================
call file.cmd
pause
iexplorer.exe
.....

=============================

Jean Pierre Daviau

--
windows XP professionnel 2002 SP2
asus p4 s533/333/133

http://jeanpierredaviau.com

Aimons les étrangers; l'on vit avec eux les trois quart de notre vie.
 
Jean Pierre Daviau said:
Hi,

How can I return from a batch calling an application?

In what sense is your batch file failing to return? Or is it that control is
not returning from the application to your batch script?

/Al
 
Jean Pierre Daviau said:
Hi,

How can I return from a batch calling an application?
--- file.cmd---
start "C:\Program Files\EasyPHP1-8\EasyPHP.exe"
-------
===========================
call file.cmd
pause
iexplorer.exe
=============================

Jean Pierre Daviau

You appear to call the batch file "file.cmd" from within itself, resulting
in a recursive loop with no exit.
 
Hi,

How can I return from a batch calling an application?
--- file.cmd---
start "C:\Program Files\EasyPHP1-8\EasyPHP.exe"

Should be:

start "" "C:\Program Files\EasyPHP1-8\EasyPHP.exe"
 
Back
Top