Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I'm writing a tcl script that will display its results as html in Internet Explorer. The script launches Internet Explorer but the call to exec blocks the script until I close the browser.
I've tried to add an & at the end of the exec row but then an error message like:
"couldn't duplicate output handle: bad file number"
is prompted. This is how my code looks like:
set browser "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE"
#start the browser and show the results
exec $browser $html_file
The question is: How do I make my script go on after the launch of IEXPLORE.EXE on win2000?
I'm writing a tcl script that will display its results as html in Internet Explorer. The script launches Internet Explorer but the call to exec blocks the script until I close the browser.
I've tried to add an & at the end of the exec row but then an error message like:
"couldn't duplicate output handle: bad file number"
is prompted. This is how my code looks like:
set browser "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE"
#start the browser and show the results
exec $browser $html_file
The question is: How do I make my script go on after the launch of IEXPLORE.EXE on win2000?