RE: [perl-win32-gui-users] Simple window (new to win32::gui)

2003-05-06 Thread Peter Eisengrein
So far so good. What you neglected to do was tell it to show the window. When you create the window it is hidden by default. Try adding $window->Show(); -Pete -Original Message- From: Bored is me [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2003 3:56 PM To: perl-win32-gui-users@lis

[perl-win32-gui-users] Simple window (new to win32::gui)

2003-05-06 Thread Bored is me
this is my script so far: #!C:/Perl/bin/perl.exe use Win32::GUI; my $window = Win32::GUI::Window->new( -title=> "Stuff", -left => 400, -top => 100, -width=> 185, -height => 360, -name => "Stuff", ); $window->AddButton( -name=> "Button1", -ok

[perl-win32-gui-users] Masks in an ImageList

2003-05-06 Thread Jeremy White
I have an image list that I’m using in a treeview and in a tabstrip. I need to use masks but I cannot work out what I’m meant to do? I have tried various combinations of setting the mask using the method Add(BITMAP, [BITMAPMASK]) but I’m getting nowhere - any ideas? Cheers, Jez. _