Changing the progressbar style

M

Mitchell Vincent

In other programming languages I've been able to easily change the style
of a progress bar between smooth and blocked. I find that is either
really hidden or impossible in .NET. Am I missing something?

I'm shocked that .NET doesn't have a style property for the progressbar
control!
 
H

Herfried K. Wagner [MVP]

Mitchell Vincent said:
In other programming languages I've been able to easily change the style
of a progress bar between smooth and blocked. I find that is either really
hidden or impossible in .NET. Am I missing something?

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
I'm shocked that .NET doesn't have a style property for the progressbar
control!

I agree.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top