Ticking clock

  • Thread starter Thread starter Dudley
  • Start date Start date
D

Dudley

I've set up a switchboard for my Access 2000 database which in the top right
had corner I've put in a box for the current time. However, the actual time
only changes when you go to another menu. Is there anyway I can make the
clock so it actually ticks, if you know what I mean.

Just trying to be clever!!

TIA
 
When you write 'actually ticks', I assume you mean
show each second, not actually make a tick tock sound.

Let's start from scratch, as I don't know what you have already done.

Add an unbound text control to the form.
Leave the control source property blank.
Name it 'ShowTime'

Set the Forms Timer Interval property to
1000

Code the Timer event:
[ShowTime] = Time
 
Back
Top