Exemple #1
0
        public static void ShowException(Exception ex)
        {
            fmShowException fm = new fmShowException();

            fm.txtException.Text = ex.ToString();
            fm.txtException.Select(0, 0);
            fm.Show();
        }
 public static void ShowException(Exception ex) {
   fmShowException fm = new fmShowException();
   fm.txtException.Text = ex.ToString();
   fm.txtException.Select(0, 0);
   fm.Show();
 }