Exemplo n.º 1
0
        private void Splash_timer_Tick(object sender, EventArgs e)
        {
            this.Hide();
            Start_Form start_Form = new Start_Form();

            start_Form.Show();
            Splash_timer.Enabled = false;
        }
Exemplo n.º 2
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // instantiate all forms
            Splashform        = new Splash_form();
            startform         = new Start_Form();
            selectform        = new Select();
            Product_info_form = new Product_Info_form();
            order_form        = new Order();
            //  aboutform = new Aboutform();
            product = new product();
            dollar_Computer_Data = new Dollar_Computer_Data();



            Application.Run(new Splash_form());
        }