Parent Directory
|
Revision Log
|
Patch
--- trunk/TSAdminTool/frmAdmin.cs 2012/07/12 17:03:02 59 +++ trunk/TSAdminTool/frmAdmin.cs 2012/07/12 17:34:46 61 @@ -9,7 +9,8 @@ using System.Windows.Forms; using System.Runtime.InteropServices; using System.IO; - using System.Data.SqlClient; // For File operations + using System.Data.SqlClient; + using System.Security.Permissions; // For File operations public partial class frmAdmin : Form @@ -24,32 +25,7 @@ public frmAdmin() { InitializeComponent(); - } - - static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) - { - Exception ex = (e.ExceptionObject as Exception); - if (ex == null) - { - Logging.ATSAdminLog.Error("Encountered unhandled Exception, but the exception was null"); - return; - } - if (ex.GetType() == typeof(SqlException)) - { - SqlException sql_ex = (ex as SqlException); - using (log4net.NDC.Push(string.Format("SqlException: ID={0} MESSAGE={1}{2}Diagnostics:{2}{3}", sql_ex.Number.ToString(), sql_ex.Message, System.Environment.NewLine, sql_ex.ToString()))) - { - Logging.ATSAdminLog.Error("Encountered unhandled SqlException"); - } - } - else - { - using (log4net.NDC.Push(string.Format("Exception: MESSAGE={0}{1}Diagnostics:{1}{2}", ex.Message, System.Environment.NewLine, ex.ToString()))) - { - Logging.ATSAdminLog.Error("Encountered unhandled Exception"); - } - } - } + } private void frmAdmin_Load(object sender, EventArgs e) { @@ -762,10 +738,10 @@ // Configure AnywhereTS - // Run first time starting ATS and can also be invoked from the Tools menu. + // Run first time starting ATS and can also be invoked from the Tools menu. private bool ConfigureATS() { - AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); + DialogResult result; if (!ProSupport.IsAnAdministrator())
ViewVC Help | |
Powered by ViewVC 1.1.22 |