Set Message box to appear at specific time each day

  • Thread starter Thread starter Steve M
  • Start date Start date
S

Steve M

Hi,

Is it possible to set a message box to appear at a set time each day. I
want it to appear at 1500 hrs to tell the user to print and fax a specific
report.

Thanks Steve
 
Use the Timer event of a hidden form to check if:
TimeValue(Now()) >= #15:00:00#

You will also need to write to a table when the message has been given, so
you do not give it again today (for example, if the guy turns the machine on
at 4pm, but you still wish to give the message.)
 

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

Back
Top