示例#1
0
        //Purchase Invoices
        #region Purchase Invoice

        //New Purchase Invoice
        private void new_ToolStripMenuItem2_Click(object sender, EventArgs e)
        {
            InvoicesP inv = new InvoicesP();

            inv.MdiParent = this;
            inv.Show();
        }
示例#2
0
文件: Start.cs 项目: cosior/OilPress
 //New Purchase Invoice
 private void new_ToolStripMenuItem2_Click(object sender, EventArgs e)
 {
     InvoicesP inv = new InvoicesP();
     inv.MdiParent = this;
     inv.Show();
 }