Start the browser as background process

2007-11-23 Thread Walter . Laub
Thank you, it works.___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Start the browser as background process

2007-11-22 Thread Jan Dubois
On Thu, 22 Nov 2007, Kenneth Ölwing wrote: > > > system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website"; > > wait, until the browser window is closed. > Some: > > Look into Win32::Process (I believe it's called). The CreateProcess call > has flags to control this. > > Crude, but

Re: Start the browser as background process

2007-11-22 Thread Kenneth Ölwing
> system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website"; > wait, until the browser window is closed. Some: Look into Win32::Process (I believe it's called). The CreateProcess call has flags to control this. Crude, but since you're using 'system', run cmd.exe and there use the

Start the browser as background process

2007-11-22 Thread Walter . Laub
Hello, I want to start a browser window, but as background process, so my script will continue to run: My example: system "\"C:\\Programme\\Internet Explorer\\iexplore.exe\" $website"; wait, until the browser window is closed. Any suggestions? Walter Laub