Hello,
I have a small C# question. On a form, I have a progressbar and sort of a todo list. The todo list shows the current action being performed, the progress bar displays the progress of this action. All actions are dealt with in a single background worker.
Some actions require a continuous progressbar (as I can predict the amount of steps required), so for these the style is set to "continuous". For other actions, I would like to set it to "marquee". But just setting the style doesn't work...
I found in the help that "continuous" is only valid if visual styles are not enabled, whereas "marque" is only valid when visual styles are enabled.
What is this "visual styles" thing?
And can I change the appearance of the progressbar this way?
Thanks!
Jörg
I have a small C# question. On a form, I have a progressbar and sort of a todo list. The todo list shows the current action being performed, the progress bar displays the progress of this action. All actions are dealt with in a single background worker.
Some actions require a continuous progressbar (as I can predict the amount of steps required), so for these the style is set to "continuous". For other actions, I would like to set it to "marquee". But just setting the style doesn't work...
I found in the help that "continuous" is only valid if visual styles are not enabled, whereas "marque" is only valid when visual styles are enabled.
What is this "visual styles" thing?
And can I change the appearance of the progressbar this way?
Thanks!
Jörg
Comment