Re: How to Invoke application for further action on it.

2001-10-23 Thread Michael Fowler
On Mon, Oct 22, 2001 at 12:33:37PM +0530, Abhra Debroy wrote: > My problem is code after "system('C:/from21/AbhraDownload/pce.exe'); " does > not get executed unless PCE(Application) is closed. It even do not print > 'After Invoking application'; > > How I can Overcome the situation. Use fork a

How to Invoke application for further action on it.

2001-10-21 Thread Abhra Debroy
Following is the diff between exec() and system() function exec()it replaces your currently running program with a different one. If you want to keep going use system() instead. Now My problem... I want to invoke an application and check the tittle of the default window of the application.