I'm using the .Net ProgressBar, but can only manage the distinct style
bar. I'm used to the MFC CProgressBar which allows you to set a
"smooth" style. Is there a way to get the smooth style using .Net? I'm
using Managed Code Extensions in C++.

Joseph

Re: Smooth progress bar by hirf-spam-me-here

hirf-spam-me-here
Wed Feb 11 15:24:03 CST 2004

* Joseph Tate <jtate@REMOVEmi-corporation.com> scripsit:
> I'm using the .Net ProgressBar, but can only manage the distinct style
> bar. I'm used to the MFC CProgressBar which allows you to set a
> "smooth" style. Is there a way to get the smooth style using .Net?
> I'm using Managed Code Extensions in C++.

You can reimplement the ProgressBar control and specify 'PBS_SMOOTH'
('ProgressBar' is 'sealed', so you cannot extend it).

- or -

Microsoft's recommendation:

HOW TO: Create a Smooth ProgressBar in Visual Basic .NET
<http://support.microsoft.com/default.aspx?scid=kb;en-us;323088>

SCNR

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Re: Smooth progress bar by Mal

Mal
Thu Dec 09 23:08:27 CST 2004

This site has a .Net sample project for a smooth progress bar, with
gradient colors, etc:
http://www.trackslinger.com/codelibrary/

Peace...