I am using C# and Windows Forms. I have a normal progress bar working fine in the program, but now I have another operation where the duration cannot be easily calculated. I would like to display a progress bar but don't know the best way to start/stop the scrolling marquee. I was hoping for something as simple as setting the marquee speed and then having a start() and stop() but it doesn't appear to be that simple. Do I have to run an empty loop in the background? How do I best do this? Thanks
|
|
Use a progress bar with the style set to
You can also use the |
|||
|
To start/stop the animation you should do this: To start:
To stop:
|
||||
|
|
It's not how they work. You "start" a marquee style progress bar by making it visible, you stop it by hiding it. You could change the Style property. |
|||
|
|
|
This code is a part of a login form where the users wait for the authentication server to respond.
|
||||
|
|
|
There's a nice article with code on this topic on MSDN. I'm assuming that setting the Style property to ProgressBarStyle.Marquee is not appropriate (or is that what you are trying to control?? -- I don't think it is possible to stop/start this animation although you can control the speed as @Paul indicates). |
||||
|
|
|
you can use a Timer (System.Windows.Forms.Timer). Hook it's Tick event, advance then progress bar until it reaches the max value. when it does (hit the max) and you didn't finish the job, reset the progress bar value back to minimum. ...just like Windows Explorer :-) |
|||
|
|