[perl-win32-gui-users] How to dynamically combine bitmaps in toolbar

2007-08-22 Thread Waldemar Biernacki
Hello everyone! I've found usefull notes on toolbar. However I have not found how to combine different images to get one toolbar. Later on is my code. I have three bitmaps: one, two and both. If you call the script as follows: perl script.pl both then you get two-images toolbar. But if you cal

Re: [perl-win32-gui-users] How to print text in COLOR in Textfield

2007-08-22 Thread Jason Plum
To do this you will not be able to make use of the standard multi-line text field. If you wanted all messages in the field to be of one color this would be fine, however, to have multiple colors in the field you will need to make use of the RichEdit control. Beware of dependancies on older systems

[perl-win32-gui-users] How to print text in COLOR in Textfield

2007-08-22 Thread Maxmelbin Neson (RBIN/EMT1)
Hello All, I have a multiline Textfield which acts as my output console. $main = Win32::GUI::Window->new(-name => 'Main', -text => 'Perl Win32 GUI', -width => 550, -height => 660,

Re: [perl-win32-gui-users] Actions not firing in Win32GUI

2007-08-22 Thread jez_white
Hi, For some reason I can't see the attached code, but I think I know what is going on. You are using the Old Event Model (OEM) which always assumes the event hndlers are in the main package space. To fix your problem prefix each event handler with :: or use the NEM (new event model). Cheers,