If you are after a clock on your form
Put this code in your form's ON LOAD event:
Me!lblClock.Caption = Format(Now, "dddd, mmm d, yyyy, hh:mm:ss AMPM")
Me.TimerInterval = 1000
Put this code in the TIMER INTERVAL event:
Me!lblClock.Caption = Format(Now, "dddd, mmm d, yyyy, hh:mm:ss AMPM")
Then, but a label on the form called "lblClock" (without the quotes) and you're done.
Borrowed from someone
Hope this helps
Hymn