Example #1
0
        private void SplashFormTimer_Tick(object sender, EventArgs e)
        {
            SplashFormTimer.Enabled = false;
            StartForm startForm = new StartForm();

            startForm.Show();
            this.Hide();
        }
        private void SplashFormTimer_Tick(object sender, EventArgs e)
        {   // if not set to false it will keep creating a splash form ever 3 seconds
            SplashFormTimer.Enabled = false;

            StartForm startForm = new StartForm();

            startForm.Show();
            this.Hide();
        }
        private void SplashFormTimer_Tick(object sender, EventArgs e)
        {
            SplashFormTimer.Enabled = false;

            // Instantiate the next form
            StartForm startForm = new StartForm();

            startForm.Show();
            // Hide this form
            this.Hide();
        }