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.)
 
Back
Top