Re: [perl-win32-gui-users] TextField entry

2003-11-26 Thread Glenn Linderman
Hi, the overall effect can also be achieved via accelerator keys... define Enter as an accelerator key. On approximately 11/26/2003 4:07 PM, came the following characters from the keyboard of Steve Pick: Hi, I've just submitted an addition for Win32::GUI v0.0.665 which adds the keycode and ext

Re: [perl-win32-gui-users] DC fullscreen

2003-11-26 Thread Steve Pick
You can get the DC of the screen like this (ripped from http://jeb.ca/perl/win32-gui-docs/index.pl/win32-gui-dc): $Screen = new Win32::GUI::DC("DISPLAY"); Then you can write what you like all over it. However this isn't great. You can also make a window with the style WS_CHILD, which has no title

Re: [perl-win32-gui-users] TextField entry

2003-11-26 Thread Steve Pick
Hi, I've just submitted an addition for Win32::GUI v0.0.665 which adds the keycode and extra info as arguments to the onKeyDown handler. This allows you to do this, to create a single-line text entry field which detects a press of the Enter key. my $textfield = new Win32::GUI::Textfield ($win, -

[perl-win32-gui-users] DC fullscreen

2003-11-26 Thread Peter Janson
Hi! Is there a way to whrite graphics in "fullscreen" mode? One could always place the window at -xx, -xx and make the window a trifle bigger than the actual screen resolution, but that solution feels "dirty". Is there a better way? /Peter Janson

Re: [perl-win32-gui-users] TextField entry

2003-11-26 Thread Johan Lindstrom
At 01:58 2003-11-26, Ross Clunie wrote: I would like to be able to use the ENTER key as an event trigger for a textfeild. I have the _LostFocus event set and this works when the tab key is used but I would like ENTER key to emulate this function. Is it poosible. Fake it by adding a button that