Re: [perl-win32-gui-users] inline bitmaps
Not sure what you mean - the example "bitmap" in the samples folder resizes the bitmap dymanically. Or you mean a progress bar of somesort? Cheers, jez. From: "Chris" <[EMAIL PROTECTED]> To: Subject: [perl-win32-gui-users] inline bitmaps Date: Tue, 30 Sep 2003 17:29:14 -0700 Okay, I'm working on a program to display how much bandwidth we have left for each network jack in the resident hall where I live. I have it parsing the data and everything coreectly, however my knowledge runs out on this I need to have it like a download application, so I need to have a bitmap, that I can resize dynamically, and I'm not sure how to do that. If someone could help, it would save me a lot of work Thanks -- Chris _ On the move? Get Hotmail on your mobile phone http://www.msn.co.uk/msnmobile
[perl-win32-gui-users] progress bars
Okay, I'm working on making a progress bar that works, however, this code won't let my progress bar show. If someone could help, I would very much appreciate it. $Wmain->AddProgressBar( -name => "Progressbar", -top => 15, -left => 10, -smooth => 1, -visible => 1, ); $Wmain->Progressbar->SetRange(0, 100); $Wmain->Progressbar->SetStep(1); $Wmain->Progressbar->SetPos($bwl1); Thanks --Chris