Create a text box on a form and call it txtClock
Set the format to Long Time
Go to the properties for the for and set the timer to 1000
use Code builder to set an event procedure under "On Timer"
Code should look like this:
Private Sub Form_Timer()
Me.txtClock.Requery
End Sub