View Full Version : Updating the time with the timer


baresi
05-04-2001, 09:16 AM
I am trying to set a field on a form to display the time using =Now() and updating it using the On Timer every second but am having no luck at all.

Any ideas most appreciated.

Rich
05-04-2001, 10:01 AM
Create a label called Clock
In the timer event for the form put Clock.Caption = Time
set interval to 1000

baresi
05-04-2001, 12:15 PM
Thanks Rich.

Works a treat.