apprentice has asked for the wisdom of the Perl Monks concerning the following question:
I get this error:use Win32::OLE; my $ie = Win32::OLE->new('InternetExplorer.application') or die "oops\ +n"; $ie->{visible} = 1; $ie->Navigate("http://www.cpan.org"); my $dos = Win32::OLE->new('Cmd.application') or die "oops\n"; $dos->{visible} = 1;
If it can't be done with Win32::OLE, is there another module that will let me do this?Win32::OLE(0.1601) error 0x800401f3: "Invalid clas string" at C:\scrip +ts\dos.pl line 14 eval {...} called at C:\dos.pl line 14 oops
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: How can I open and use a DOS window on another computer?
by BrowserUk (Patriarch) on Nov 24, 2003 at 05:00 UTC | |
by l3nz (Friar) on Nov 24, 2003 at 09:18 UTC | |
by BrowserUk (Patriarch) on Nov 24, 2003 at 12:44 UTC | |
Re: How can I open and use a DOS window on another computer?
by davido (Cardinal) on Nov 24, 2003 at 04:41 UTC | |
Re: How can I open and use a DOS window on another computer?
by Roger (Parson) on Nov 24, 2003 at 05:18 UTC | |
Re: How can I open and use a DOS window on another computer?
by cLive ;-) (Prior) on Nov 24, 2003 at 08:49 UTC | |
Re: How can I open and use a DOS window on another computer?
by davis (Vicar) on Nov 24, 2003 at 10:16 UTC |