Example #1
0
 private void BtnNewInvoice_Click(object sender, EventArgs e)
 {
     newInvForm = new NewInvoiceForm(InvoiceType.Arrival);
     newInvForm.ShowDialog();
 }
Example #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     newInvForm = new NewInvoiceForm(InvoiceType.Production);
     newInvForm.ShowDialog();
 }