RE: open program

2008-09-08 Thread V.Ramkumar
>>I am trying to open Internet explorer from within Perl.I have used the >>following code: You cau use like this: system ("start iexplore \"www.google.com\""); System ("start iexplore"); Regards, Ramkumar -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: open program

2008-09-08 Thread Jeff Pang
2008/9/8 Jeff Pang <[EMAIL PROTECTED]>: > 2008/9/8 Adams Paul <[EMAIL PROTECTED]>: >> #!/usr/bin/perl;open(MYFILE,"C:\Program Files\Internet Explorer.exe"); > > If you call an external program in Perl, shouldn't use "open". adjust: I mean shouldn't use open directly like this way. but you could op

Re: open program

2008-09-08 Thread Jeff Pang
2008/9/8 Adams Paul <[EMAIL PROTECTED]>: > > I am trying to open Internet explorer from within Perl.I have used the > following code: > > > > #!/usr/bin/perl;open(MYFILE,"C:\Program Files\Internet Explorer.exe"); If you call an external program in Perl, shouldn't use "open". Instead you could say

open program

2008-09-08 Thread Adams Paul
I am trying to open Internet explorer from within Perl.I have used the following code: #!/usr/bin/perl;open(MYFILE,"C:\Program Files\Internet Explorer.exe"); Any help would be appreciated. Paul

open program

2008-09-08 Thread Adams Paul
I am trying to open Internet explorer from within Perl.I have used the following code: #!/usr/bin/perl;open(MYFILE,"C:\Program Files\Internet Explorer.exe"); Any help would be appreciated. Paul