[perl-win32-gui-users] New release (0.15) of Win32::GUI::Skin is available on Sourceforge

2006-12-15 Thread Brian Millham
Hi all, Release 0.15 of Win32::GUI::Skin is now available on SourceForge. The project page is located at http://win32-gui-skin.sourceforge.net Almost all Win32::GUI standard objects are supported in this version. The skinfile format has been improved, and the SKin EDitor (SKED) has major impr

[perl-win32-gui-users] constants + OO + external file generates cleanup error message

2006-12-15 Thread Leif Andersson
I had the, maybe bad, idea of putting up a kind of "framework", so I could manage my windows definitions in external separate files. In its simplest form it works as expected: #!/usr/bin/perl -w use strict; use Win32::GUI qw(WS_SYSMENU); my $handle = do 'mainw.gui' ; $handle->Show; Win32::GUI::D

Re: [perl-win32-gui-users] Noob question on looping through records

2006-12-15 Thread Geoffrey Spear
Since you're using: while(@InputFileLines) { shift @InputFileLines;} to empty your list in the cleanup block there, I'm assuming you're not removing lines from the list in the "do some other stuff" block, in which case your conditional is never going to be true. If I'm wrong, the code above is

Re: [perl-win32-gui-users] Noob question on looping through records

2006-12-15 Thread Jason Plum
OOPS! This is not a Win32::GUI issue, its a pure perl issue! my $TotalInputFileLines = scalar(@InputFileLines); Heh, I do that sometimes myself.. Jason Plum JoeManFoo wrote: Hi all, Have a dumb question/issue. I've coded up my GUI and am trying to do a simple thing of looping though rec

[perl-win32-gui-users] Noob question on looping through records

2006-12-15 Thread JoeManFoo
Hi all, Have a dumb question/issue. I've coded up my GUI and am trying to do a simple thing of looping though records and for each record I want to fill in my GUI with the data for the current record and wait for the user to make some action...when the action is performed, then I process the act

Re: [perl-win32-gui-users] Bitmap image in the statusbar?

2006-12-15 Thread Jason Plum
You could always write a custom extension to allow for the use of a bitmap in the status bar. You would have to do a lot of the back end coding (drawing msgs etc) but hey, ANYTHING is technically possible ;) ;) Jason Plum Frazier, Joe Jr wrote: Not sure about bitmaps, but you can use the stan

Re: [perl-win32-gui-users] Bitmap image in the statusbar?

2006-12-15 Thread Frazier, Joe Jr
Not sure about bitmaps, but you can use the standard progress bar control in a statusbar using the parts paradigm. See the sample StatutBar2.pl. I have included it here in case it has changed or is no longer included with the samples: use Win32::GUI; use Time::HiRes qw( time ); my $window = new

[perl-win32-gui-users] Bitmap image in the statusbar?

2006-12-15 Thread Steve Loughran
Hi all A crazy thought, but... is it possible to draw a bitmap into the status bar of a window? I want to have some kind of graphical "status" indicator (alongside the text in the status bar) any ideas? Or should I just drop this idea and get on with something else instead? :) Steve