[perl-win32-gui-users] 2 Questions

2004-07-29 Thread YorHel
Hi I'm trying to create a label with transparent background, I know this is asked before, but this (http://sourceforge.net/mailarchive/message.php?msg_id=6975835) doesn't work. Here's what I want: use Win32::GUI; $win = new Win32::GUI::Window( -name => "testwindow", -title=> "Testing...",

Re: [perl-win32-gui-users] How to change window/dialogbox icon

2004-07-29 Thread Jez White
Arh - I'm using the latest dev build. You can use the latest PPM from this link: http://perso.club-internet.fr/rocherl/Win32-GUI-Dev/index.html Cheers, jez. - Original Message - From: Eric Hansen To: 'Jez White' ; 'Frazier, Joe Jr' ; perl-win32-gui-users@lists.sourceforge.net

RE: [perl-win32-gui-users] How to change window/dialogbox icon

2004-07-29 Thread Eric Hansen
Jez, can you tell me what version of Win32::GUI you are using to be able to use this syntax? When I try to run the code you suggest with my version of Win32::GUI, I get the following error: Can't locate auto/Win32/GUI/ImageList/GetIcon.al in @INC I looked through the Win32::GUI docs

Re: [perl-win32-gui-users] How to change window/dialogbox icon

2004-07-29 Thread Jez White
Hi, You can use the GetIcon method of an ImageList object to return an icon from the original bitmap. You have to create the imagelist and load the bitmap into it first - a bit convoluted, but it does work. Cheers, jez. - Original Message - From: Frazier, Joe Jr To: Eric Hanse