Re: C# regarding progress bar
You should add progressbar support to Test() and the button click event, not this function.
first create a progressbar, then set the max and min like:
progressbar.maximum = 100
progressbar.minimum = 0
and progressbar.step = 1
self explanatory i think... you set the min and max limits of the bar, and step is the no of steps.
thats for configuring the bar. for modifying the bar, you use the progressbar.value during your function.
like progressbar.value += 1
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
|