Time clock

  • Thread starter Thread starter Bessie Sanders
  • Start date Start date
B

Bessie Sanders

Hello

I need to display the computer clock time when someone
log into access. I have 6 different people at various
location, this feature is used as an time clock , I want
to link all user to my computer clock that will match
everyone login; therefore, will prevent them from
changing the time.
What I have now:
Private sub TimeIn_Enter()
Timein = time()
Visible = false
Visible = true
End sub
Private sub Timeout_Enter()
Timeout = time()
Visible = false
Visible = true
End sub

This is not working because they constantly change the
time: I used this as a time clock.
 
Hi,


A possible way to synchronize the pc with another one on the network is to
use the command

NET TIME

(run NET TIME /help to get more options).



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top