I have this code which Invokes a MethodInfo:
try { registrator.Method.Invoke(instance, parameters); } catch{ registrator.FailureType = RegistratorFa
Have you tried this?
In Program.cs
Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
And a try/catch on the Run method:
try { Application.Run(new Form1()); } catch (Exception ex) { }