Help.
My main form has a tab control of 4 pages, each with a form and subform.
I added me.requery to the timer events of each main form of each page. The requery works but when it runs the user is sent back to the first record. I don't want that to happen.
This is my new code:
Private Sub Form_Timer()
Me.Requery
Me.RecordsetClone.FindFirst "[UCSID] = '" & Me![NoCallNoComp1Yr.UCSID]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Now it doesn't do anything, not even requery.
What am I doing wrong?
Thanks!
My main form has a tab control of 4 pages, each with a form and subform.
I added me.requery to the timer events of each main form of each page. The requery works but when it runs the user is sent back to the first record. I don't want that to happen.
This is my new code:
Private Sub Form_Timer()
Me.Requery
Me.RecordsetClone.FindFirst "[UCSID] = '" & Me![NoCallNoComp1Yr.UCSID]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Now it doesn't do anything, not even requery.
What am I doing wrong?
Thanks!