예제 #1
0
        static void Main()
        {
            frmCuttingEars frmInterface = new frmCuttingEars();

            frmInterface.ResizeRedraw = true;
            Application.Run(frmInterface);
        }
예제 #2
0
        static void Main()
        {
            //Catch unhandled exception if it exists:
            AppDomain currentDomain = AppDomain.CurrentDomain;

            currentDomain.UnhandledException += new UnhandledExceptionEventHandler(
                UnhandledExceptionHandler);

            frmCuttingEars frmInterface = new frmCuttingEars();

            frmInterface.ResizeRedraw = true;
            Application.Run(frmInterface);
        }