tags:

views:

23

answers:

1

I have a marquee style progress bar at some point I want it to stop well marqueeing I guess How do I ? this is on win7 .NET 3.5

A: 

Set the Style property to a value other than Marquee:

progressBar.Style = ProgressBarStyle.Marquee; // marquee animation starts
progressBar.Style = ProgressBarStyle.Continuous; // marquee animation stops
Fredrik Mörk