Esempio n. 1
0
        public bool mainInit(String[] args, out bool bCommandLineOnly)
        {
            bCommandLineOnly = true;
            mWindowless      = true;
            try
            {
                //throw new System.Exception("Test batch exception handling");
                mThis = this;
                if (args != null)
                {
                    parseArgsForExportParams(args);
                }

                //if the user has specified files for us to export
                //then don't pop up our window. Instead, just export and close us.
                if (mScenarioFilesToExport.Count != 0)
                {
                    CoreGlobals.ConsoleMode = true;
                    if (mDoAoSection)
                    {
                        exportAOFileList();
                    }
                    else if (mBuildAoSections)
                    {
                        buildAOSections();
                    }
                    else
                    {
                        exportFromCommandLine();
                    }

                    return(true);
                }
                else
                {
                    bCommandLineOnly = false;
                    mWindowless      = false;
                    Init();
                }
            }
            catch (System.Exception ex)
            {
                OnException(ex);
            }
            return(false);
        }
Esempio n. 2
0
        static int Main(string[] args)
        {
            Program.mbExporterRunning = false;
            Program.mbBatchExporter   = null;
            try
            {
                //This must be first to supress any popup exception in the batch exporter
                if (args.Length != 0 && args[0] == "exporter")
                {
                    Program.mbExporterRunning = true;
                }

                Xceed.DockingWindows.Licenser.LicenseKey = "DWN10-JHEY0-BZ3XS-EWCA";
                Xceed.Zip.Licenser.LicenseKey            = "ZIN23-BUSZZ-NND31-7WBA";
                Xceed.SmartUI.Licenser.LicenseKey        = "SUN33-2W6LR-JY5NS-6KNA";
                Xceed.Chart.Licenser.LicenseKey          = "CHT40-A4SC3-BG1XW-SKAA";

                Xceed.Grid.Licenser.LicenseKey = "GRD30-AW6N0-0GC0H-7KXA";



                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);


                Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
                Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);

                if (args.Length == 0)
                {
                    Application.Run(new MainWindow());
                }

                else if (args[0] == "exporter")
                {
                    bool          bCommandLineOnly = false;
                    BatchExporter be = new BatchExporter();
                    Program.mbBatchExporter = be;
                    bool status = be.mainInit(args, out bCommandLineOnly);
                    if (bCommandLineOnly == true)
                    {
                        return(be.mStatusResult);
                    }
                    else
                    {
                        Application.Run(be);
                        return(be.mStatusResult);
                    }
                }
                else
                {
                    try
                    {
                        Console.ForegroundColor = ConsoleColor.Red;
                        Application.Run(new MainWindow(args));
                    }
                    catch
                    {
                    }
                }
            }
            catch (System.Exception ex)
            {
                if (System.Diagnostics.Debugger.IsAttached)
                {
                    throw ex;
                }
                if (Program.mbExporterRunning == false)
                {
                    MessageBox.Show("If the editor is crashing on start up please check out the install instructions here \\\\esfile\\Phoenix\\Tools\\editor\\Dependencies  \n\n\n" + ex.ToString());
                }
                else
                {
                    if (Program.mbBatchExporter != null)
                    {
                        Program.mbBatchExporter.OnException(ex);
                    }
                    else //just incase the exporter dies in the constructor.
                    {
                        Console.WriteLine(ex.ToString());
                    }
                }
            }
            return(0);
        }