I have a main form which I set a timer to requery to an unbound text box called "LocalTime" every 60 seconds
This works fine until the user edits something in a subform.
I tried to fix it by running Me.Dirty before the event, but it is still not working.
Right now, I am using a work around by just putting a command button to requery the local time when the user presses the button.
But it would be nice if I could get this timer to work. Any ideas?
Code:
Private Sub Form_Load()
Me.TimerInterval = 60000
End Sub
Code:
Private Sub Form_Timer()
Me.LocalTime.Requery
End Sub
I tried to fix it by running Me.Dirty before the event, but it is still not working.
Code:
If Me.Dirty Then Me.Dirty = False
Code:
Me.LocalTime.Requery
But it would be nice if I could get this timer to work. Any ideas?