automatically print report

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

gary

I want a report to print everyday at 5:00 p.m. I have
looked at the TimerInterval property but it doesn't seem
to be what I need.

thanks,

Gary
 
You would need to build a form with a timer event that runs every minute or
so. Then do a comparison with the current time "Now()". If the current
time is between 5:00:00 and 5:02:00 then run your procedure.

You might also be able to build this as a public function that is not tied
to a form, but I do not know how to do that. I always have these types of
events tied to a hidden form.

Hope that helps.

Rick B


I want a report to print everyday at 5:00 p.m. I have
looked at the TimerInterval property but it doesn't seem
to be what I need.

thanks,

Gary
 
Back
Top