Subversion Repositories Code-Repo

Rev

Rev 15 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15 Rev 53
Line 52... Line 52...
52
                else
52
                else
53
                    Invoke(new updateStatus_(updateStatus), new object[] { status });
53
                    Invoke(new updateStatus_(updateStatus), new object[] { status });
54
            }
54
            }
55
            catch (Exception e)
55
            catch (Exception e)
56
            {
56
            {
57
                MessageBox.Show(e.ToString());
57
                //MessageBox.Show(e.ToString(), "Error");
-
 
58
                DebugText.appendText(e.ToString());
-
 
59
                MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
58
            }
60
            }
59
        }
61
        }
60
        delegate void closeForm_();
62
        delegate void closeForm_();
61
        public void closeForm()
63
        public void closeForm()
62
        {
64
        {
Line 69... Line 71...
69
                else
71
                else
70
                    Invoke(new closeForm_(closeForm), new object[] { });
72
                    Invoke(new closeForm_(closeForm), new object[] { });
71
            }
73
            }
72
            catch (Exception e)
74
            catch (Exception e)
73
            {
75
            {
74
                MessageBox.Show(e.ToString());
76
                //MessageBox.Show(e.ToString(), "Error");
-
 
77
                DebugText.appendText(e.ToString());
-
 
78
                MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
75
            }
79
            }
76
        }
80
        }
77
    }
81
    }
78
}
82
}