Re: [perl-win32-gui-users] [win32-gui] odd MDI window menu behavior in v.1.04/v.1.05

2006-11-09 Thread Robert May
Geoffrey Spear wrote: Hi. I've got a program using an MDIClient with the -windowmenu option, and it's acting strangely under 1.04 and 1.05 (I've downgraded to 1.03 and it's now behaving perfectly normally). Can you produce a minimal version of you code that demonstrates the problem? Otherwis

[perl-win32-gui-users] New search facility

2006-11-09 Thread Robert May
I just put together a new search function, using some new tools from google. It searches all the following places: - http://perl-win32-gui.sourceforge.net/ (DOCS, WIKI and HOMEPAGE) - SourceForge mail archives (users and hackers lists) - project CVS repository All from one place. Find it (for

Re: [perl-win32-gui-users] [win32-gui] MouseOver

2006-11-09 Thread Robert May
Arun ragini wrote: i have been trying to work with MouseOver on textfield, but it does'nt seems to work, what im trying to do is, print a msg in the status bar (tool tips). if possible can some post the code to do that. Here's a cut-down version of the code from http://perl-win32-gui.sourcef

Re: [perl-win32-gui-users] [win32-gui] MouseOver

2006-11-09 Thread Robert May
Arun ragini wrote: i have been trying to work with MouseOver on textfield, but it does'nt seems to work, what im trying to do is, print a msg in the status bar (tool tips). if possible can some post the code to do that. Here's a cut-down version of the code from http://perl-win32-gui.sourcef

Re: [perl-win32-gui-users] [win32-gui] win32-gui mail list spam?

2006-11-09 Thread Robert May
Steve Loughran wrote: Hi all Can someone tell me if the win32-gui-(users|hackers) mail lists only allow posts from subscribed email addresses? It's supposed to. Seems we have had a couple of spam emails get through the filters, and wondering if someone was spoofing a subscribed members ema

Re: [perl-win32-gui-users] "hotkeys" for an inactive window?

2006-11-09 Thread Steve Loughran
Sorry to dredge this topic up, but I thought I would post my demo code to create system-wide hotkeys. Feel free to poke holes in my coding style (I wont be listening :) ) Its a modified version of the code that Robert May posted for the generic "bring the window to the front" hotkey code. This

[perl-win32-gui-users] odd MDI window menu behavior in v.1.04/v.1.05

2006-11-09 Thread Geoffrey Spear
Hi. I've got a program using an MDIClient with the -windowmenu option, and it's acting strangely under 1.04 and 1.05 (I've downgraded to 1.03 and it's now behaving perfectly normally). What's happening is that any time I create a 10th MDIChild window (causing the "More windows" menu item to be c

Re: [perl-win32-gui-users] MouseOver

2006-11-09 Thread Kind, Uwe (AGIS)
Hi Arun, I did it that way: -- use Win32::GUI (); my $mw; $mw = new Win32::GUI::Window ( -name => 'main_window', -text => 'main_window', -left => 100

Re: [perl-win32-gui-users] aligning the text in the menus

2006-11-09 Thread Kind, Uwe (AGIS)
Hi Teddy, separate the hotkeys by a "\t" from the text. Uwe -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Octavian Rasnita Gesendet: Donnerstag, 9. November 2006 09:32 An: perl-win32-gui-users@lists.sourceforge.net Betreff: [perl-win32-gui-us

[perl-win32-gui-users] aligning the text in the menus

2006-11-09 Thread Octavian Rasnita
Hi, I want to specify in a certain menu element that I want to right-align the hotkey that can be used to activate that menu item, like: CopyControl+C Cut Control+X Delete Control+D Is it possible to do it with Win32::GUI in a better way than simply using more spaces? Thanks. Teddy