how to return from an applcation

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.
 
A

Al Dunbar

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
 
P

Pegasus \(MVP\)

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.
 
F

foxidrive

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top