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...