for (int i = 0; i <= 100; ++i) { InvokerProxy.progressBar1.Value = i; InvokerProxy.Text = String.Format("{0} - {1}%", textBox1.Text, i); }
for (int i = 0; i <= 100; ++i) { int j = i; Invoke((MethodInvoker)delegate { progressBar1.Value = j; Text = String.Format("{0} - {1}%", textBox1.Text, j); }); }