1. Progress bars
- Posted by jordah ferguson <jorfergie03 at yahoo.com> Feb 05, 2002
- 465 views
has anyone ever wondered how those good looking progrssbars are created, for example when installing a prog. and it says "setting up wizard to help you during installation process"? Is there a way of creating these good looking progrss bars o0r are they just custom controls that you have to create yourself?
2. Re: Progress bars
- Posted by Derek Parnell <ddparnell at bigpond.com> Feb 05, 2002
- 437 views
Here is an example that might help... --------------- include win32lib.ew -- progress bar styles constant PBS_SMOOTH = 1, PBS_VERTICAL = 4 without warning constant Win = createEx(Window,"Timer Window",0,Default,Default,200,100,0,0), Gauge = createEx(LText,"", Win, 5, 5, 180, 20, 0, 0), PBar = createEx(ProgressBar,"",Win,5,40,180,20,PBS_SMOOTH,0), Timer = 1 procedure tick( integer self, integer event, sequence parms ) -- advance the progress bar by 5 ticks integer curpos sequence currange -- Get the allowable range of values currange = getScrollRange( PBar ) -- Get the current position curpos = getScrollPos( PBar ) -- Move to the next position, if it is beyond the -- end of the bar, reset it. curpos += 5 if curpos > currange[2] then curpos = 0 end if -- Show the new position setScrollPos( PBar, curpos ) -- Update the digital display too. setText(Gauge, sprintf("%d%% (%d)", {floor(100*curpos/currange[2]),curpos})) end procedure setHandler(Win, w32HTimer, routine_id( "tick" )) -- Set the max range for the bar setScrollRange(PBar, 0, 60) -- tick once per second setTimer( Win, Timer, 1000 ) WinMain( Win, Normal ) --------------- ----- Original Message ----- From: "jordah ferguson" <jorfergie03 at yahoo.com> To: "EUforum" <EUforum at topica.com> Sent: Tuesday, February 05, 2002 9:25 PM Subject: Progress bars > > has anyone ever wondered how those good looking progrssbars are created, > for example when installing a prog. and it says "setting up wizard to > help you during installation process"? Is there a way of creating these > good looking progrss bars o0r are they just custom controls that you > have to create yourself? > > > >
3. Re: Progress bars
- Posted by tone.skoda at siol.net Feb 06, 2002
- 463 views
its part of internet exporer dlls you just have to wrap it to use it 'cos i dont think win32lib has it already wrapped (i may be wrong) ----- Original Message ----- From: "jordah ferguson" <jorfergie03 at yahoo.com> To: "EUforum" <EUforum at topica.com> Subject: Progress bars > > has anyone ever wondered how those good looking progrssbars are created, > for example when installing a prog. and it says "setting up wizard to > help you during installation process"? Is there a way of creating these > good looking progrss bars o0r are they just custom controls that you > have to create yourself? > > > >