Good day!
How to move to a specific record base on the current recordset of adodc control? I have this employee_(empID, empName, EmpSalRate).
I have load all employees data by using this code:
dim Sql as string
Sql="select * from tml_employee order by empName Asc"
AdoDc.ConnectionString=Conn
AdoDc.RecordSource=Sql
AdoDc.Refresh
Thus, I also have text boxes that has a recordsource of this AdoDC. Now I need to move to a record whos empName is equal to "Ana Josh" and EmpSalRate=15, 000.00.
Thank you for helping!