Time clock

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

Michel Walsh

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top