How to refresh form every 60 seconds?
How to refresh form every 60 seconds?
(OP)
Hi
Is there a way to code somewhere on the form so it would automatically refresh every 60 seconds?
Thanks
Is there a way to code somewhere on the form so it would automatically refresh every 60 seconds?
Thanks
RE: How to refresh form every 60 seconds?
Use the timer-event on the form, then Me.Refresh or
Me.Requery or whatever.
hth,
Wayne
RE: How to refresh form every 60 seconds?
Read the Timer Event description in the Access Help.
Every form has an OnTimer event that runs at intervals set by the Timer Interval property. Set the Timer Interval property to 60000 (it counts milliseconds) and set the OnTimer event to the macro or event procedure you want to run.