RE: Internet Explorer

2004-10-23 Thread Wenjie Wang
:-Original Message- :From: [EMAIL PROTECTED] :[mailto:[EMAIL PROTECTED] Behalf Of :$Bill Luebkert :Sent: Sunday, 24 October 2004 11:57 AM :To: MJG :Cc: [EMAIL PROTECTED] :Subject: Re: Internet Explorer : : :MJG wrote: : :> I have what I thought was a rather simple program for setting IE in

RE: Internet Explorer

2004-10-23 Thread h-taguchi
use strict; use Win32::IE::Mechanize; my $ie = Win32::IE::Mechanize->new( visible=>1, resizable=>1, addressbar=>0, toolbar=>0, top=>0, left=>0, height=>600, width=>800, ); $ie->get("http:

Re: Internet Explorer

2004-10-23 Thread $Bill Luebkert
MJG wrote: > I have what I thought was a rather simple program for setting IE in > KIOSK mode and opening a web page. Although IE sets up correctly, no > web page comes up. Any ideas? use strict; use Win32::OLE 'EVENTS'; my $IE = Win32::OLE->new('InternetExplorer.Application', 'Quit') or die

RE: opening outlook

2004-10-23 Thread Grakowsky, Richard \(ETS: Communications and Network Services\)
Mike, Personally, I'd like to see that code! I have a situation somewhat similar to this and have worked around everything except the pasword part. In my world, I have labs of computers w. generic auto logons under one domain, but needed to allow students to launch the full Outlook client (a

Internet Explorer

2004-10-23 Thread MJG
I have what I thought was a rather simple program for setting IE in KIOSK mode and opening a web page. Although IE sets up correctly, no web page comes up. Any ideas? MJG use Win32::OLE 'EVENTS'; my $IE = Win32::OLE->new( "InternetExplorer.Application", "Quit" ) || die; if( 0 != Win32::OLE->Las

Re: calling main application variables from module subroutine with use strict

2004-10-23 Thread Paul Rogers
Ha! I figured it was something easy. Thanks! Paul --- - Original Message - From: "Sisyphus" <[EMAIL PROTECTED]> To: "Paul Rogers" <[EMAIL PROTECTED]> Cc: "Perl-Win32-Users" <[EMAIL PROTECTED]> Sent: Saturday, October 23, 2004 7:06 PM Subject: Re: calling main application variables from mo

Re: calling main application variables from module subroutine with use strict

2004-10-23 Thread Sisyphus
Paul Rogers wrote: my $blah = 'test'; our $blah = 'test'; Cheers, Rob ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

calling main application variables from module subroutine with use strict

2004-10-23 Thread Paul Rogers
How can I read or updates variables from modules or other imported files (while using 'use strict')? The following example works if I don't include 'use strict' and the subsequent 'my' declaration. E.g.: # main.pl # package main; use strict; use mymod; my $blah = 'test'; tests