Smooth progress bar

  • Thread starter Thread starter Joseph Tate
  • Start date Start date
J

Joseph Tate

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
 
* Joseph Tate said:
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
 
Back
Top