0
votes
How to recover gracefully from TargetInvocationException in multi thread?
Not sure what version of .net you are using if its 3.0+ you can do something along these lines.
private void UpdateValue(int newValue)
{
Action myAction = () => progressBar.V …
