Using computer clock

  • Thread starter Thread starter gary
  • Start date Start date
G

gary

I want a report to print out at 5:00 p.m. everyday. How
do I automate this to happen the same time everyday?

Thanks,

Gary.
 
Hi Gary,

Did you try the Windows Scheduler?
You can use it if the Access db is not open at that time.

If you want more info, try searching for 'schedule' in the newsgroup.

Regards,
Bernd
 
I want a report to print out at 5:00 p.m. everyday. How
do I automate this to happen the same time everyday?

Thanks,

Gary.

If you are able to have a form open (hidden is OK) at least just
before that time ...

Set the Form's Timer Interval to 1000

Code the Form's Timer event:
If Time = #05:00:00 PM# Then
DoCmd.Open Report "ReportName"

Otherwise, use the Windows Scheduler program.
 

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

Automate backup 3
Word Word "auto print" 2
automatically print report 1
Access Making a memo in Access 0
Create Excel Lab test results 1
Daily Make Table 2
can i set a rule to run after 5.00p.m. everyday 3
KB920872 3

Back
Top