J
John C.
I have a form that needs updated every 60 seconds. To do
this, I placed the following code for the form's timer
event:
Private Sub Form_Timer()
varBookMark = Me.Bookmark
Me.Requery
Me.Bookmark = varBookMark
End Sub
When opening the form initially, this works.
BUT, if the forms record source is changed (by code of a
command button), I received "Not a valid bookmark." error
message.
Any way around this?
this, I placed the following code for the form's timer
event:
Private Sub Form_Timer()
varBookMark = Me.Bookmark
Me.Requery
Me.Bookmark = varBookMark
End Sub
When opening the form initially, this works.
BUT, if the forms record source is changed (by code of a
command button), I received "Not a valid bookmark." error
message.
Any way around this?