Re: [perl-win32-gui-users] Need help placing controls on top of graphics

2006-12-28 Thread Kind, Uwe (AGIS)
Hi Rob, if you use a Label with the "-notify => 0" option to display the bitmap it should be possible to place other controls on top of it. If you need to catch the events for the background bitmap your in trouble. There seems to be a bug in the event handling for child-controls in Win32::GUI.

Re: [perl-win32-gui-users] Change values out of a thread

2006-12-28 Thread Kind, Uwe (AGIS)
Hi maleadt, have a look at the Win32::GUI::ThreadUtils package. It comes with a good example for changing the value of a progress bar. Setting the content of a textbox is quite comparable. Bye, Uwe Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftra

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

Re: [perl-win32-gui-users] Win32::GUI v1.05 issue

2006-11-08 Thread Kind, Uwe (AGIS)
Hi Harlan, the example works for me without any warnings or errors. - WinXP SP2 (German) - ActivePerl 5.8.7 - Win32::GUI 1.05 Regards, Uwe -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Harlan Carvey Gesendet: Mittwoch, 8. November 2006 23:0

Re: [perl-win32-gui-users] [win32-gui] Click-event handlers not called

2006-10-31 Thread Kind, Uwe (AGIS)
Hi, bug tracker entry 1588332 created. Thanks, Uwe > Hi, > > I've got a problem with popup menus for TabStrip-controls, demonstrated > in the following lines of code. > The same popup menu which works perfectly for the main-window doesn't > work > for the TabStrip-control. The menu is tracked,

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

2006-10-29 Thread Kind, Uwe (AGIS)
Hi Teddy, did you build Win32::GUI on your own or did you use the ppm-package? If you don't have the possibility to build the module, you will have to wait until an official patch is available. I've created an entry in the bug tracker for this issue. If you have a C-compiler readily to hand, t

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

2006-10-28 Thread Kind, Uwe (AGIS)
Hi Teddy, try the following: #!perl -w use Win32::GUI ( 'WM_COMMAND' ); my $mw = new Win32::GUI::Window ( -name => 'mw', -left => 100, -top => 100,

[perl-win32-gui-users] Click-event handlers not called

2006-10-28 Thread Kind, Uwe (AGIS)
Hi, I've got a problem with popup menus for TabStrip-controls, demonstrated in the following lines of code. The same popup menu which works perfectly for the main-window doesn't work for the TabStrip-control. The menu is tracked, but the Click-event handlers of the MenuItems aren't called. Any he

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

2005-08-08 Thread Kind, Uwe
Hi jez, > Just so I understand what you are trying to do. Do you mean the change in > the menu colour (to blue) when the mouse moves over the menu buttons in IE? I want to 'grey out' the text when $mw loses the focus. > The structures used by a toolbar and header are different - see: > > http:

RE: [perl-win32-gui-users] wrong colored NotifyIcon

2005-08-08 Thread Kind, Uwe
Hello Сергей, in which way is the the Win32::GUI::Icon-Object created? If it is extracted from an ImageList using GetIcon try a value of 25 for the Flags-Option on creation of the Imagelist and set an Mask when adding the Bitmap. 1. All standard .ico-Files (16x16, 32x32, 256 colors) should do 2

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

2005-08-07 Thread Kind, Uwe
Hello perl-win32-gui-users, I'm trying to change the TextColor of a Coolmenu on _Deactivate and _Activate of the parent-window to emulate the original IE behaviour. In my understanding of the MSDN-documentation a Toolbar-Control, receiving a NM_CUSTOMDRAW-notification, should behave in exactly the

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

2005-08-07 Thread Kind, Uwe
> 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 . > > I'm using de MDI.pl example (Win32-GUI examples) for test. > > Thanks! One possibility is to add a Label with a

[perl-win32-gui-users] RE: Populated Textfield - How to retain formatting?

2005-08-06 Thread Kind, Uwe
The following two lines should solve the problem if $textfield was created with the option -multiline => 1 or the ES_MULTILINE-Style: $text =~ s/\n/\r\n/g; $textfield -> Text ( $text ); Regards, Uwe. > Hello! > > I chose to populate a Textfield with a simple text file created with > notepad.