To catch the exception, enclose the line within a try/catch block and get the InnerException: Try with this code and catch the exception try { MyForm.Invoke(MyForm.MyDelegate, new Object[] { someParameter }); } catch (Exception ex) { MessageBox.Show(ex.InnerException.Message); }
Regards, Satips.