:-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
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:
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
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
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
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
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
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