Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Analog clock in Access Form

Status
Not open for further replies.

mybers

IS-IT--Management
Mar 24, 2004
62
0
0
PH
Hello everyone..

Anyone has a code for making an Analog clock placed in a Form..?

Im working on a Basic Automated Time keeping system. Where you log-in, log-out of the office.

Anyways, is this possible? ive seen this in VB but in access? I hope so....

muchas gracias!

 
As in like, show the clock face and clock-hands that move?
 
Hi:

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
 
You could embed an analog clock made in macromedia flash (several available on the internet). It can't communicate with Access, so you cant change the time, but it will display the clock.
I havent got time for a tutoriel now, but if you are interested let me know and I will see what I can do.

FCiL
 
I found it. I have a form that will show an analog clock. If you would like a copy, send an email to me and I'll ship it to you.

fneily@hotmail.com

Neil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top