Rob,
Is there a planned date for the next release?
Also, many of the common events do not work on the main Window, right?
Like MouseOver and MouseOut...
use strict;
use Win32::GUI;
$|=1;
my $main = Win32::GUI::Window->new(
-name => 'Main',
-text => 'Perl',
-width => 200,
-height => 200,
-topmost=>1,
);
$main->Center();
$main->Show();
Win32::GUI::Dialog();
sub Main_Terminate {return -1;}
#These Events work
sub Main_Activate{print "Activate\n";}
sub Main_Deactivate{print "Deactivate\n";}
#These Events do not work
sub Main_MouseOver{print "MouseOver\n";}
sub Main_MouseOver{print "MouseOut\n";}
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Robert May
Sent: Wednesday, August 03, 2005 4:29 PM
To: Jeremy White
Cc: [email protected]
Subject: Re: [win32gui] [perl-win32-gui-users] The window -backgroud
option
I just put a fix for this into CVS.
Rob.
Jeremy White wrote:
> Can anyone remember if this has ever worked? Looking at the options
> logic within Win32-GUI you should be able to do:
>
> my $win = new Win32::GUI::Window(
> -name => "WinMain",
> -pos => [100, 100],
> -size => [100, 100],
> -background => [0,255,0],
> );
>
> Which would set the background to green - but it doesn't...
>
> Cheers,
>
> jez.
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by the 'Do More With Dual!' webinar
> happening
> July 14 at 8am PDT/11am EDT. We invite you to explore the latest in
dual
> core and dual graphics technology at this free one hour event hosted
by
> HP, AMD, and NVIDIA. To register visit
http://www.hp.com/go/dualwebinar
> _______________________________________________
> Perl-Win32-GUI-Users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
>
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle
Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing &
QA
Security * Process Improvement & Measurement *
http://www.sqe.com/bsce5sf
_______________________________________________
Perl-Win32-GUI-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
This email, and any files previous email messages included with it, may contain
confidential and/or privileged material. If you are not the intended recipient
please contact the sender and delete all copies.