RE: Starting other programs

2002-06-10 Thread Toby Stuart
how about a good old batch file. -Original Message- From: Sean Ahern [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 08, 2002 1:35 AM To: [EMAIL PROTECTED] Subject: Re: Starting other programs At 10:11 07/06/2002 -0500, you wrote: I have a question about kicking off another program

RE: Starting other programs

2002-06-10 Thread kbatzer
]] On Behalf Of Toby Stuart Sent: Monday, June 10, 2002 7:32 PM To: '[EMAIL PROTECTED]' Subject: RE: Starting other programs how about a good old batch file. -Original Message- From: Sean Ahern [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 08, 2002 1:35 AM To: [EMAIL PROTECTED

RE: Starting other programs

2002-06-10 Thread Michael D. Smith
Very interesting. I've used system before, without anything where the 'Start' is. Without commands, it waits and returns only after the called program is closed, in this case notepad: system ('C:\\Windows\\Notepad.exe ', 'C:\\Windows\\TEMP\\TextFile.txt') == 0 or die Mysystemdie

Re: Starting other programs

2002-06-10 Thread $Bill Luebkert
Michael D. Smith wrote: Very interesting. I've used system before, without anything where the 'Start' is. Without commands, it waits and returns only after the called program is closed, in this case notepad: system ('C:\\Windows\\Notepad.exe ', 'C:\\Windows\\TEMP\\TextFile.txt') == 0