Hi!
unfortunatly not as simple as Excel (Using application.ontime) but still fairly straightforward.
There are actually two ways to do this, which one you choose will depend upon your needs...
The first method is to have the database running all day long. When the database opens, you open a form with a timer control. Have the timer event run every 5 minutes or so and check the time with a simple IF statement, once it reaches or passes your specified times run the relevant code.
The second method uses Schecduled tasks. Create 2 macros (Macros not VBA), one for each timed event, that call your relevant code. Then set up two scheduled tasks to run at your required times. When you create the Sched tasks, you just call the database files and then use the /x command line option plus the name of the macro you wish to run. So for example...
"C:\northwind.mdb" /x FirstMAcro
The above would open Northwind then run the macro First Macro.
The second method means that your database does not need to run all day long, the only thing to remember with the 2nd is that you need to quit Access after each macro finishes running.
hope that helps
