Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Customer_Information ci = new Customer_Information();

            this.Hide();
            ci.Show();
        }
        private void Stand1_Click(object sender, EventArgs e)
        {
            Stand        s      = Stand.Initialising_Stand(0);
            DialogResult result = MessageBox.Show("Are You Sure", "Confirmatin", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);

            this.Hide();
            if (result == DialogResult.OK)
            {
                Customer_Information.Get_Stand_id(s);

                Stand_Level sl = new Stand_Level();
                sl.When_form_Load(s);

                sl.Show();
            }
            else
            {
                this.Show();
            }
        }