Greetings!
Hi, I'm a vb starter. I've inserted an adodc data control into a form.
With adodcIncoming
.Recordset.Find "p_id = " & "'" & txtPatientId.Text & "'"
Above is a code snippet. After this block of codes, I'd like to check if p_id = txtPatientId.Text is found or not, how can I do that?
I know that with a data control, I could use .Recordset.NoMatch method. However, with an adodc, it's not available.
Please help.
Regards.