Re: [perl-win32-gui-users] Accelerator bug?

2004-01-22 Thread Glenn Linderman
On approximately 1/22/2004 12:36 PM, came the following characters from the keyboard of Steve Pick: Hi, I've implemented the following two functions: $coderef = $window->GetEvent("eventname"); $window->SetEvent("eventname", \&sub); These allow you to access and modify NEM event handlers. Gre

Re: [perl-win32-gui-users] Accelerator bug?

2004-01-22 Thread Johan Lindstrom
At 21:36 2004-01-22, Steve Pick wrote: These allow you to access and modify NEM event handlers. Very cool. You can't access and modify OEM event handlers. I should hope that the reasons are obvious: It would be impossible and pointless. ...unless you just modify the symbol table? Or what i

Re: [perl-win32-gui-users] Accelerator bug?

2004-01-22 Thread Steve Pick
Hi, I've implemented the following two functions: $coderef = $window->GetEvent("eventname"); $window->SetEvent("eventname", \&sub); These allow you to access and modify NEM event handlers. You can't access and modify OEM event handlers. I should hope that the reasons are obvious: It would be im

Re: [perl-win32-gui-users] How can I install Win32-GUI-DIBitmap without MSVC?

2004-01-22 Thread Laurent ROCHER
Hi, > I am trying to install Win32-GUI-DIBitmap. At first I install ppm, but > when I tryed to run demo.pl sample script I got a error: > > Can't call method "ConvertToBitmap" on an undefined value at D:\IPSwitch\test\de > mo.pl line 14. Your PPM install is probably good because you can load Win3

RE: [perl-win32-gui-users] Label with transparent background

2004-01-22 Thread Stephen Pick
Hi, this has already been in the list before. I've no idea if it really works but try adding this option to your label: -pushexstyle => 0x0020 That sets the WS_EX_TRANSPARENT style. Apparently it makes windows transparent but still allows them to respond to input events. Please let m

[perl-win32-gui-users] Label with transparent background

2004-01-22 Thread carollyne courtney
Is there anyway to create a label with a transparent background? Thanks.. _ Get accurate, multi-day weather forecasts for your area at MSN Weather! http://www.msn.co.za/weather/

RE: [perl-win32-gui-users] How can I install Win32-GUI-DIBitmap without MSVC?

2004-01-22 Thread Stephen Pick
Yikes Right, first off you need to get the Microsoft Platform SDK. This contains all the windows header files and system header files that will be required when compiling. It's free to download, get it here: http://www.microsoft.com/msdownload/platformsdk/sdkupdate/ It's a massive download. You

[perl-win32-gui-users] How can I install Win32-GUI-DIBitmap without MSVC?

2004-01-22 Thread du4mi
Hi All, I am trying to install Win32-GUI-DIBitmap. At first I install ppm, but when I tryed to run demo.pl sample script I got a error: Can't call method "ConvertToBitmap" on an undefined value at D:\IPSwitch\test\de mo.pl line 14. then I tryed to install this module from scratch, how it wrotten

[perl-win32-gui-users] Scrolling text

2004-01-22 Thread Chris
Okay, how can I make text scroll back and forth on my label? I've been looking and messing with it, but I can't figure it out. I also need to know how I can make it so labels respond to key presses, so if I press B it sends the same command as my next button. Thanks Chris