Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            StartForm starform = new StartForm();

            starform.Show();
            this.Hide();
        }
Exemplo n.º 2
0
        private void OrderCancelButton_Click(object sender, EventArgs e)
        {
            StartForm startForm = new StartForm();

            startForm.Show();
            this.Hide();
        }
Exemplo n.º 3
0
        private void OrderFinishButton_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Thanks purchase. Your order will be processed in 7-10 business days.", "Message");
            StartForm startForm = new StartForm();

            startForm.Show();
            this.Close();
        }
Exemplo n.º 4
0
        void timer_Tick(object sender, EventArgs e)
        {
            timer.Stop();
            StartForm startform = new StartForm();

            startform.Show();
            this.Hide();
        }