void DoTask(string msg, int value) { if (InvokeRequired) { Invoke(new MethodInvoker(() => DoTask(msg, value))); return; } progressBar1.Value++; }