timer

N

Nikos Yannacopoulos

Suadh,

Unlike VB, in Access you do not need to add a control on a form for a Timer
function; it is built in all forms by default, just not activated until you
do so in design view or through code.
Open your form in design view and display the form properties; select the
Events tab and scroll alll the way down. Changing the Timer Interval setting
fom default 0 (inactive) to a positive integer will activate the timer event
(interval is in milliseconds, so 1000 for 1 sec and so on).
The use the On Timer property (right above the interval one) to assign /
create the macro or code to be run.

HTH,
Nikos
 

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

Similar Threads

Timer not being dispalyed and not able to use form?? 3
Timers and code... 1
Access 2010 DB not fuctional with multiple users 2
Access: "global" timer 2
Stop Timer 2
Timing a query 4
Timer of Form 5
Timer 1

Top