private void kryptonButton2_Click(object sender, EventArgs e)
        {
            FrmConsignmentInvoice frm_Consignment_Invoice = new FrmConsignmentInvoice();

            this.Close();
            frm_Consignment_Invoice.ShowDialog();
        }
示例#2
0
 public FrmConsignmentReturn(FrmConsignmentInvoice confignmentInvoiceForm, DEInvoice inv)
 {
     InitializeComponent();
     invoice = inv;
     rdo_isCarton.Checked        = true;
     rdo_Price1.Checked          = true;
     this.frm_ConsignmentInvoice = confignmentInvoiceForm;
     isCreditInvoice             = false;
     isCashInvoice = false;
 }