Ejemplo n.º 1
0
        private void btnNewOrder_Click(object sender, EventArgs e)
        {
            CustomerInvoice ciNew = new CustomerInvoice();
            ciNew.MdiParent = this.MdiParent;
            ciNew.Show();

            this.Close();
        }
Ejemplo n.º 2
0
        private void customerInvoiceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cursor = System.Windows.Forms.Cursors.WaitCursor;

            Forms.Manufacturing.CustomerInvoice frmCustInvoice = new CustomerInvoice();
            frmCustInvoice.MdiParent = this;
            frmCustInvoice.Show();

            Cursor = System.Windows.Forms.Cursors.Default;
        }