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