Example #1
0
        private void txtMaDocGia_TextChanged(object sender, EventArgs e)
        {
            if (txtMaDocGia.Text != "")
            {
                string ht = obj_phieu.tenDocGia(txtMaDocGia.Text);

                //neu nhu khong tim thay ma sv thi ko lam gi, và xóa text cũ
                if (ht.Equals(""))
                {
                    txtTenDocGia.Text = "";
                    return;
                }

                txtTenDocGia.Text = ht;
            }
        }