Dear all,
I would like to move to record number x in a recordset using
me.recordset.move x, 1
However, I keep getting a "not a valid bookmark" error.
The .move method only seems to take one parameter, contrary to what the following article says:
http://www.w3schools.com/ado/met_rs_move.asp
What am I missing? Does the form's recordset object take different methods to an ADO recordset?
Of course, I can achieve the same effect using:
me.recordset.movefirst
me.recordset.move x
but that doesn't help me to understand why I can't get .move to work with two parameters!
Thanks so much for any help,
Robin
I would like to move to record number x in a recordset using
me.recordset.move x, 1
However, I keep getting a "not a valid bookmark" error.
The .move method only seems to take one parameter, contrary to what the following article says:
http://www.w3schools.com/ado/met_rs_move.asp
What am I missing? Does the form's recordset object take different methods to an ADO recordset?
Of course, I can achieve the same effect using:
me.recordset.movefirst
me.recordset.move x
but that doesn't help me to understand why I can't get .move to work with two parameters!
Thanks so much for any help,
Robin