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
                   2010-06-04 06:57:13