Esempio n. 1
0
        static void Main()
        {
            System.Windows.Forms.Application.EnableVisualStyles();
            System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);


            //show splash
            Thread splashThread = new Thread(new ThreadStart(
                                                 delegate
            {
                frmSplash = new FrmSplash();
                System.Windows.Forms.Application.Run(frmSplash);
            }
                                                 ));

            splashThread.SetApartmentState(ApartmentState.STA);
            splashThread.Start();


            //run form - time taking operation
            FrmContainer mainForm = new FrmContainer();

            mainForm.Load += new EventHandler(mainForm_Load);
            try
            {
                System.Windows.Forms.Application.Run(mainForm);
            }
            catch (Exception ex)
            {
                MessageBox.Show("Ha ocurrido un error en la aplicación", "DGT", MessageBoxButtons.OK,
                                MessageBoxIcon.Error);
            }
        }
Esempio n. 2
0
        static void mainForm_Load(object sender, EventArgs e)
        {
            //close splash
            if (frmSplash == null)
            {
                return;
            }

            frmSplash.Invoke(new Action(frmSplash.Close));
            frmSplash.Dispose();
            frmSplash = null;
        }