I have created a DLL that accesses data from a Database using property get statements. I am able to bind text boxes on a form that uses the DLL but am unable to get the recordset to move to the next record. Can anyone PLEASE PLEASE help
Printable View
I have created a DLL that accesses data from a Database using property get statements. I am able to bind text boxes on a form that uses the DLL but am unable to get the recordset to move to the next record. Can anyone PLEASE PLEASE help
Hi Africa from Singapore,
You have to create 4 methods to return adodb.recordsets
yourclass.MoveFirst
yourclass.MovePrev
yourclass.MoveNext
yourclass.MoveLast
Under these methods, use your recordset move methods respectively....ie..rs.MoveFirst, rs.MovePrevious, rs.MoveNext, rs.MoveLast
Alternatively, think abt creating a ActiveX UserControl that resembles the ADO Data Control that has 4 buttons that allows the user to navigate within your recordset.
I hope this helps