[perl-win32-gui-users] ProgressBar inside StatusBar?

2003-12-23 Thread student55
Hello, I have again some small questions: 1.How can I draw StatusBar with multiple panels in it? This topic was already discussed about 3 years ago. Answer was then "no(t yet :-)". And if I can, how can I put ProgressBar inside StatusBar? 2.I have upgraded to 0.0.670 Win32-GUI and now I ge

RE: [perl-win32-gui-users] ProgressBar inside StatusBar?

2003-12-23 Thread Jeremy White
From: <[EMAIL PROTECTED]> 1.How can I draw StatusBar with multiple panels in it? This topic was already discussed about 3 years ago. Answer was then "no(t yet :-)". And if I can, how can I put ProgressBar inside StatusBar? The answer is still not yet:) The link below contains the message y

RE: [perl-win32-gui-users] need help with Graphic

2003-12-23 Thread Jeremy White
Hi, A couple of months ago I was planning on doing exactly that - I never got round to doing it, but it is something that I may have to do in the next couple of months. I use GD to draw my charts, and plot them onto the DC with Win32::GUI::DIBitmap. There are several different approaches, and

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

2003-12-23 Thread Jonathan Southwick
At 12/1/2003 10:15 AM, Chris wrote: 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. Ive tried to do it by changing the fill and color commands and have had no luck, if anyone knows anything about ho

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

2003-12-23 Thread Jonathan Southwick
At 12/2/2003 01:27 AM, Steve Pick wrote: 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 go

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

2003-12-23 Thread Jeremy White
From: Jonathan Southwick <[EMAIL PROTECTED]> I have been wanting to do this forever myself but never was able to ... until today!!! I figured out a way to do it and its rather simple. You need to use SendMessage though but it works. Here is the answer: $result = SendMessage($hWndControl, P

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

2003-12-23 Thread Левин
> >$result = SendMessage($hWndControl, PBM_SETBARCOLOR, 0, $color); GOOD! But now, please: PBM_SETBARCOLOR ( 0x400 + 9 ) PBM_SETBKCOLOR(?) PBM_SETSTEP (?) It is a question silly ;) : How I can find itself continuation? Where to r

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

2003-12-23 Thread Jonathan Southwick
At 12/24/2003 02:51 AM, =?koi8-r?B?7MXXyc4=?= wrote: > >$result = SendMessage($hWndControl, PBM_SETBARCOLOR, 0, $color); GOOD! But now, please: PBM_SETBARCOLOR ( 0x400 + 9 ) PBM_SETBKCOLOR(?) PBM_SETSTEP (?) PBM_SETBKCOLOR = 0x2000 + 1 PBM_SE

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

2003-12-23 Thread Chris
Dude, your awesome I've been needing this forever. Thanks so much. _ From: Jonathan Southwick [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 23, 2003 12:43 PM To: Chris; perl-win32-gui-users@lists.sourceforge.net Subject: Re: [perl-win32-gui-users] Progress bar's [coloring] At

[perl-win32-gui-users] Change Font color

2003-12-23 Thread Chris
Okay, after I create a label, with a custom font color, how can I update it and make it so it will actually display the new color? $Wmain->AddLabel( -name => "bwl", -foreground => $ucolor, -top => 1,