Example #1
0
 private void btnIFind_Click(object sender, EventArgs e)
 {
     f.TABLE_NAME = "tblSupplier";
     f.ShowDialog();
     if (f.gOkCancel == true)
     {
         txtCode.Text = f.CODE;
         gCustID      = f.CUSTID;
         txtCode.Focus();
     }
 }
Example #2
0
 private void btnFSupplier_Click(object sender, EventArgs e)
 {
     f.TABLE_NAME = "tblSupplier";
     f.ShowDialog();
     if (f.gOkCancel == true)
     {
         txtSuppCode.Text = f.CODE;
         //gSupplierID = f.CUSTID;
         //lblSupplier.Text = f.NAME;
         txtSuppCode.Focus();
     }
 }
Example #3
0
        private void btnFSupp_Click(object sender, EventArgs e)
        {
            frmIPSearchDealer f = new frmIPSearchDealer();

            f.TABLE_NAME = "tblCustomer";
            f.ShowDialog();
            if (f.gOkCancel == true)
            {
                txtSuppCode.Text = f.CODE;
                gCustID          = f.CUSTID;
                txtSuppCode.Focus();
            }
        }
Example #4
0
        private void btnSFind_Click(object sender, EventArgs e)
        {
            frmIPSearchDealer f = new frmIPSearchDealer();

            f.TABLE_NAME = "tblSupplier";
            f.ShowDialog();
            if (f.gOkCancel == true)
            {
                txtSupCode.Text  = f.CODE;
                gSupplierID      = f.CUSTID;
                lblSupplier.Text = f.NAME;
                txtSupCode.Focus();
            }
        }