WinXProgress_SetMarquee (hProg, enable)
Puts the progress bar into marquee mode. Note that this only works under Windows XP and higher using Windows XP style controls.
Parameter | Description |
---|---|
hProg | The handle to the progress bar to set marquee mode for |
enable | $$TRUE to enable marquee, $$FALSE otherwise |
$$TRUE on success or $$FALSE on fail
Marquee mode only works under Windows XP and higher using Windows XP style controls. When in marquee mode, the progress bar displays a coloured bar which slides along the progress bar. Use it to indicate that your application is busy, but you don't know how long it will take.
'enable marquee for some progress bar WinXProgress_SetMarquee (hProg, $$TRUE) |