Do you know how to get an email notification or a prompt in Access 2002, reminding you to do a certain task? I?m using a database in Access to keep track of my projects at work but I would like to get an email or some sort of prompt reminding me toupdate my info in the database. If so, does Access need to be open before the prompt can be sent?
This conversation is currently closed to new comments.
Do you know Visual Basic? Here is a simple code on VBA insert on Access. Create a Module
Sub Message() Dim Start, Finish, PauseTime PauseTime = 100 Start = Timer Do While Timer < Start + PauseTime DoEvents MsgBox "It's time to take a break" Loop Finish = Timer
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
Access 2002