Beispiel #1
0
 private void txtBoxSupplierCode_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         po.supplier_code  = txtBoxSupplierCode.Text;
         cBoxSupplier.Text = po.askSupplierName();
     }
 }
Beispiel #2
0
 private void txtBoxSupplierCode_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         po.supplier_code        = txtBoxSupplierCode.Text;
         txtBoxSupplierName.Text = po.askSupplierName();
         checkifTheSame();
         toAddress();
     }
 }
Beispiel #3
0
 private void txtBoxSupplierCode_TextChanged(object sender, EventArgs e)
 {
     po.supplier_code        = txtBoxSupplierCode.Text;
     txtBoxSupplierName.Text = po.askSupplierName();
     toAddress();
 }