i think the title says it all. i am by no means advanced in c#. in fact, im a total noob. can someone teach me about progress bars or refer me to a place that talks about them in easy-to-understand terms? thank you all in advance.
Printable View
i think the title says it all. i am by no means advanced in c#. in fact, im a total noob. can someone teach me about progress bars or refer me to a place that talks about them in easy-to-understand terms? thank you all in advance.
Is that something you are looking for?
First you need to set a MaximumValue of the bar, and then set its value to 0. You cann then add "bars" to it using
oh and heres a lot more bout Progressbars.Code:progressBar.Value = progressBar.Value +1;
http://www.c-sharpcorner.com/1/pbar.asp
HTH, Stephan
THANKS!
actually you should do:Quote:
Originally posted by Sgt-Peppa
Is that something you are looking for?
First you need to set a MaximumValue of the bar, and then set its value to 0. You cann then add "bars" to it using
oh and heres a lot more bout Progressbars.Code:progressBar.Value = progressBar.Value +1;
http://www.c-sharpcorner.com/1/pbar.asp
HTH, Stephan
Code:progressBar.Value++;
or progressBar.Value += 1;Quote:
Originally posted by PT Exorcist
actually you should do:
Code:progressBar.Value++;
lol.
Or
++progressBar.Value
though that is less an issue in C# than in C++.
although , PerformStep(); is ideal for the job.
Code:progressBar.Step = 1;
'/// then in the area where you wish to increase the value of the progressBar...
progressBar.PerformStep();