PDA

View Full Version : Solved: Timer Control in Access 2003



kbsudhir
05-27-2009, 10:17 AM
Hi All,

I want to display a timer control in the Access 2003 Form.


Is it possible..??
If Yes, then how to go about displying a countdown as I have teh end time & I want to display a countdown as I am reaching to that time.Any guidance appreciated.

:think: :doh:

Regards
Sudhir

CreganTur
05-27-2009, 11:06 AM
Create an unbound textbox on your form. Then set your Form's Time Interval to 1000 (milliseconds). For your form's On Timer event, use this:
Me.TextBox = Time()

Just replace TextBox with the name of the unbound textbox you created.

Timers like this can be resource hogs.