View Full Version : Is there a way to "auto" refresh forms or tables?


maddoxx
06-06-2002, 12:36 PM
Hey everybody,

I'm trying to create a form that stays on someone's screen all the time and refreshes at a set interval consistently.

The data is being entered on a network from other workstations. I want the one form to just sit there and refresh with that information displayed on it.

Anybody have any suggestions?

Thanks,

Jim

Jack Cowley
06-06-2002, 02:10 PM
Set the forms Timer Interval to the interval you want and do a Me.Refresh in the On Timer event.

maddoxx
06-06-2002, 02:24 PM
I'll try that. Thanks for the help Jack.

Pat Hartman
06-07-2002, 10:20 AM
You need to Requery the form rather than Refresh it.