Now() will return the system date but this is static. You could refresh the form using a timer event, but this is very resource hungry to do every second. What's wrong with the system clock in the task bar?
Thanx Neil,
I've done smth in access for a touch screen, there are some big butons and big fonts there and I thought to show the time in the form but in a big font, so it can be readable from a distance.
Basically, make an unbound textbox with the control source being =time(). Name it MyClock
Then in your database, for database events, set timer interval to 1000, then, on timer build the following event:
Private Sub Form_Timer()
Me.Myclock.Requery
End Sub
As neileg stated, this is very resource intensive. Watch the bottom left.... each second you will see it calculate the time.