public static void ShowException(System.Exception ex)
    {
      ExceptionForm f = new ExceptionForm();
      f.m_lblMessage.Text = "Message: " + ex.Message;

			f.m_txtTraceback.Text = ex.StackTrace;// RhinoPython.PythonScriptScope.GetStackTrace(ex);
      f.ShowDialog();
    }
        public static void ShowException(System.Exception ex)
        {
            ExceptionForm f = new ExceptionForm();

            f.m_lblMessage.Text = "Message: " + ex.Message;

            f.m_txtTraceback.Text = ex.StackTrace;            // RhinoPython.PythonScriptScope.GetStackTrace(ex);
            f.ShowDialog();
        }