Re: [perl-win32-gui-users] Progress bar's

2003-12-01 Thread Steve Pick
Oh dear. I tried so much to get this to work, mucking about with classes and stuff and I couldn't figure out how. Best way I found is to paint your own damn rectangle using a Graphic object :) I realise that's not ideal, but it's the best solution I've got i'm afraid. I'd be interested as well if a

[perl-win32-gui-users] Coloring again,

2003-12-01 Thread Chris
I'm trying to read in some custom colors though a configuration file. But they don't seem to work, here's what I have so far. sub skin { if ($settings{'skin'} ne 'default') { if (-e("./$settings{'skin'}/skin.ini")){ l

Re: Re[2]: [perl-win32-gui-users] not a CODE reference

2003-12-01 Thread Laurent ROCHER
Hi, > Can you give me some more useful hints? > > 2. How can I put a hyperlink (clickable und colored, with a cursor, > that seems like a hand, if I point at link) in Win32::GUI::Grid-Cell. > I played with SetDefCellTextColor/GetFocusCell/etc but it is not good > solution for me. Are there "SetCel

[perl-win32-gui-users] Progress bar's

2003-12-01 Thread Chris
Okay, I need to know how I can specify a custom color for a progress bar, so it can be red or blue, depending on the status of my application. I've tried to do it by changing the -fill and - color commands and have had no luck, if anyone knows anything about how to do this please help, I've spent 4

Re[2]: [perl-win32-gui-users] not a CODE reference

2003-12-01 Thread YANDEX
Hello perl-win32-gui-users, 1. thanks a lot, it is solved (not a CODE reference - error) 2. How can I put hyperlink in Win32::GUI::Grid-Cell? example: http://home.arcor.de/paulwup/gui/1.gif (montage) 3. How can I get rid of grey area around Grid? 4. How can I kill a thread, that is startet with

RE: [perl-win32-gui-users] Child Windows.

2003-12-01 Thread Chris
That worked perfectly, by chance, can you change the color of the progress bar, cause I've been having trouble changing it's colors, so I'm not sure if it's possible. _ From: Peter Eisengrein [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 5:02 AM To: 'Chris'; perl-win32-gui

RE: [perl-win32-gui-users] not a CODE reference

2003-12-01 Thread Howard, Steven \(US - Tulsa\)
If I follow what you are asking, basically you are asking how to sort through the keys of a hash, and see what the values are associated with the keys in that hash. If this is correct, then this can be done very simply: foreach (keys %PLZ) { print "$_ is checked\n" if $PLZ->{$_}->{Checked}; }

RE: [perl-win32-gui-users] Child Windows.

2003-12-01 Thread Peter Eisengrein
However, if you are just looking to run an app in the background like a service, you do not need to make it a gui (probably not the most efficient solution). In that case, check out Win32::Daemon -Pete -Original Message- From: Peter Eisengrein Sent: Monday, December 01, 2003 8:02 AM To:

RE: [perl-win32-gui-users] Child Windows.

2003-12-01 Thread Peter Eisengrein
When you create the child window, add this arg: -parent => $Window, Yes, you can hide the parent and leave the child showing... -Pete -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Saturday, November 29, 2003 5:10 PM To: perl-win32-gui-users@lists.sourceforge.ne

Re: [perl-win32-gui-users] Child Windows.

2003-12-01 Thread Jeremy White
Hi, Sounds like using parent/child windows should work for you - I do something similar. To create a "child" window simply specify the parent (using -parent) when creating the window. Cheers, jez. From: "Chris" <[EMAIL PROTECTED]> To: Subject: [perl-win32-gui-users] Child Windows. Date: