Now to add percentage change string on progressBar1?
Hello!
Now to add percentage change string on progressBar1? I move the lbPercentage on the top of the progressBar1, but it will mask the progressBar1. How to solve this problem?
e.g.
int j=100;
for (int i=0; i<=j; i++)
{
progressBar1.Value=i;
lbPercentage.Text=i.ToString()+"%";
lbPercentage.Update();
}
lbPercentage.Text="Finished";