Mar 24, 2005 #1 Poloxstar MIS Jul 10, 2002 11 US can anybody help, I am trying to auto refresh a subform every 30 secs Does anybody know the code. Can you be specific. thanks for the help
can anybody help, I am trying to auto refresh a subform every 30 secs Does anybody know the code. Can you be specific. thanks for the help
Mar 24, 2005 2 #2 jtseltmann Programmer Jan 15, 2002 149 US Set the timer interval of your form to 30000 and add this to the On Timer event procedure Code: Private Sub Form_Timer() Me.Requery End Sub Upvote 0 Downvote
Set the timer interval of your form to 30000 and add this to the On Timer event procedure Code: Private Sub Form_Timer() Me.Requery End Sub