Weebairnes
Programmer
How do you move to a specific record using ADO commands?
The code from where I want to execute this is in a module (not behind the form).
I don't think that the recordset clone does me any good.
Seek is only supported with server-side cursors.
Find works great, but how do I make the current record on the form the same as the record I found?
I'm not sure I understand the gotorecord command.
DoCmd.GoToRecord acDataForm, frmMain, acGoTo, intRecord
I believe that this requires that I know which record# the record I want to goto is.
Any idears?
The code from where I want to execute this is in a module (not behind the form).
I don't think that the recordset clone does me any good.
Seek is only supported with server-side cursors.
Find works great, but how do I make the current record on the form the same as the record I found?
I'm not sure I understand the gotorecord command.
DoCmd.GoToRecord acDataForm, frmMain, acGoTo, intRecord
I believe that this requires that I know which record# the record I want to goto is.
Any idears?