I'm attempting to make a counter to show you the progress you have made in completing the current operation, but it doesn't update... any help?
NOTE: Adder and count are predifined integers of different values (adder starting at 0, and count being the max).
Code:
adder++; string prog = ((adder / count)*100).ToString() ; lblProg.Text = prog + "%";
Comment