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

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

                txtTenNhanVien.Text = ht;
            }
        }