A
Alan White
How do you keep the position of the current record in the
same place on the screen when you requery a continuous
form?
lngKeyFldId = me!KeyFldId
me.requery
With me.RecordsetClone
.FindFirst "KeyFldID = " & lngKeyFldId
if not .NoMatch then
me.bookmark = .Bookmark
end if
End with
This locates and displays the record, but shows it at the
top of the continuous form. What is the best way to keep
the record in the same place on the screen as it was
before the requery?
Thank you,
Alan :>)
Sydney NSW Australia
same place on the screen when you requery a continuous
form?
lngKeyFldId = me!KeyFldId
me.requery
With me.RecordsetClone
.FindFirst "KeyFldID = " & lngKeyFldId
if not .NoMatch then
me.bookmark = .Bookmark
end if
End with
This locates and displays the record, but shows it at the
top of the continuous form. What is the best way to keep
the record in the same place on the screen as it was
before the requery?
Thank you,
Alan :>)
Sydney NSW Australia