I have a VB6 application which uses MS Access as its backend.
Im familiar with Access and therefore how to place the record
navigation buttons for:
First Record
Next Record
Previous Record
Last Record
How would i code this in VB 6?
I tried the following code on the first button but it doesnt go to the
first record
Code:
rsExecDet.MoveFirst
Me.txtRecordCaption = "Record " & rsExecDet.AbsolutePosition & " of " &
intRecordCount