Ejemplo n.º 1
0
        private void button19_Click(object sender, EventArgs e)
        {
            Customer cus = new Customer();

            cus.Show();
            this.Hide();
        }
Ejemplo n.º 2
0
        private void button8_Click(object sender, EventArgs e)
        {
            this.Hide();
            Customer cu = new Customer();

            cu.Show();
        }
Ejemplo n.º 3
0
        private void customerToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Customer F3 = new Customer();

            F3.Show();
            F3.MdiParent = this;
        }
Ejemplo n.º 4
0
        private void Form2_Load(object sender, EventArgs e)
        {
            Customer F3 = new Customer();

            F3.Show();
            F3.MdiParent = this;
        }
Ejemplo n.º 5
0
        private void Customersbtn_Click(object sender, EventArgs e)
        {
            //Shows the Customer form and hides the menu
            Customer customer = new Customer();

            customer.Show();
            this.Hide();
        }
Ejemplo n.º 6
0
        private void button7_Click(object sender, EventArgs e)
        {
            //cust.Location = new Point(
            //     this.ClientSize.Width / 2 - cust.Size.Width / 2,
            //    this.ClientSize.Height / 2 - cust.Size.Height / 2);
            //cust.Anchor = AnchorStyles.None;

            stock.Hide();
            frm1.Hide();
            cust.Show();
            rep.Hide();
            deal.Hide();
            ab.Hide();
            back.Hide();
            this.Hide();
        }