[perl-win32-gui-users] Trapping ctl-<> and function keys and invalidating windows

2005-08-09 Thread aschwarz1309
Any way to trap control key and function key entries without a dialog window? I'd like to be able to associate functions to keys so that someone can invoke a function by pressing a key, primariliy for debugging. I don't want a submenu. Any way of detecting when a window needs to be invalidated?

Re: [perl-win32-gui-users] Trapping ctl-<> and function keys and invalidating windows

2005-08-09 Thread Robert May
[EMAIL PROTECTED] wrote: Any way to trap control key and function key entries without a dialog window? I'd like to be able to associate functions to keys so that someone can invoke a function by pressing a key, primariliy for debugging. I don't want a submenu. You should investigate Win32::GU

Re: [win32gui] [perl-win32-gui-users] {Spam?} MDIFrame and background Image

2005-08-09 Thread Robert May
Apologies if this is a repeat post, but I did not see the first one come back from the reflector. I've made the included image a whole lot smaller in case that was the problem. Rob. Robert May wrote: Daniel Fernandez wrote: Hello, perl-win32-gui-users, Anybody knows if it's possible to di

RE: [win32gui] [perl-win32-gui-users] {Spam?} MDIFrame and background Image

2005-08-09 Thread Lloyd, Steve
Is there a way using Win32::GUI to create a dragable child window that can be dragged and dropped onto another window like winspy does? Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert May Sent: Tuesday, August 09, 2005 1:08 PM To: Daniel Fern

Re: [perl-win32-gui-users] Trapping ctl-<> and function keys and invalidating windows

2005-08-09 Thread aschwarz1309
Rob; Accelerator works just fine. Can't find a description of Hook(). Hook() isn't needed and if you're otherwise occupied, ignore the question. But I am curious. art -- Original message -- From: Robert May <[EMAIL PROTECTED]> > [EMAIL PROTECTED] wrote: > > Any

RE: [perl-win32-gui-users] DC used for customdrawn Toolbar

2005-08-09 Thread Jeremy White
I've tucked this code away to add to Coolbar.pm when I next get back to it. For both of your examples I was getting an error on exit - invalid methods on global destruction. Both were failing in onDeactivate event - to get round it I had to add the following: return unless $_[0]; to the fir

Re: [win32gui] [perl-win32-gui-users] {Spam?} MDIFrame and background Image

2005-08-09 Thread Robert May
Daniel Fernandez wrote: Hello, perl-win32-gui-users, Anybody knows if it's possible to display a background bitmap image in a MDIFrame? If it's possible, I will appreciate a short example . Here's one way of doing it with a regular window. You should be able to adjust this to work with an

[perl-win32-gui-users] {Spam?} Re: MDIFrame and background Image

2005-08-09 Thread Daniel Fernandez
Hi, Thank you very much for your answer. I have been studying your code and I arrived to the conclusion that is very difficult to track all the child windows. Is easy with one object like a button, but too difficult with many child windows (I'm not a windows expert), like in the follo