Example #1
0
        public static void Main( string[] args )
        {
            // Add the event handler for handling UI thread exceptions to the event.
            Application.ThreadException += new ThreadExceptionEventHandler( UIThread_UnhandledException );

            // Set the unhandled exception mode to force all Windows Forms errors to go through
            // our handler.
            Application.SetUnhandledExceptionMode( UnhandledExceptionMode.CatchException );
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault( false );

            // Add the event handler for handling non-UI thread exceptions to the event.
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler( CurrentDomain_UnhandledException );

            MainForm = new seems( args );
            Application.Run( MainForm );
        }
Example #2
0
        public static void Main(string[] args)
        {
            // Add the event handler for handling UI thread exceptions to the event.
            Application.ThreadException += new ThreadExceptionEventHandler(UIThread_UnhandledException);

            // Set the unhandled exception mode to force all Windows Forms errors to go through
            // our handler.
            Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // Add the event handler for handling non-UI thread exceptions to the event.
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

            MainForm = new seems(args);
            Application.Run(MainForm);
        }
Example #3
0
 public Manager(seems mainForm)
 {
     this.mainForm = mainForm;
     dataSourceMap = new DataSourceMap();
 }