F
Fredrated
The standard way to do this is locating the record with recordsetclone, then
executing
me.bookmark = me.recordsetclone.bookmark.
Is there any other way to move a form to a specific record?
The reason I ask is, I am using Access as a front end to a postgres database
on a Unix box, connecting with ODBC. This has worked very well for years,
but with one flaw. Access will move to a selected record using the
recordsetclone technique, but only for about the first 4 requests. After
that, the code
Me.RecordsetClone.FindFirst "MasterRegistrationID = " & cstr(lngKey)
doesn't even execute, the system stays at the last record located.
If anyone knows of another way to move a form to a specific record, I would
appreciate hearing about it.
Thanks in advance for any help.
Fred
executing
me.bookmark = me.recordsetclone.bookmark.
Is there any other way to move a form to a specific record?
The reason I ask is, I am using Access as a front end to a postgres database
on a Unix box, connecting with ODBC. This has worked very well for years,
but with one flaw. Access will move to a selected record using the
recordsetclone technique, but only for about the first 4 requests. After
that, the code
Me.RecordsetClone.FindFirst "MasterRegistrationID = " & cstr(lngKey)
doesn't even execute, the system stays at the last record located.
If anyone knows of another way to move a form to a specific record, I would
appreciate hearing about it.
Thanks in advance for any help.
Fred