Setting Reminders in Access 97

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anybody know how I could set reminders for calls/meetings etc. in Access
97? I think I could export stuff to Outlook to accomplish this but it seems
like too many steps. Wondering if maybe I could do the same thing within
Access using Visual Basic.

Does anyone have any suggestions and/or source code?
 
Create a query that returns calls/meetings etc you want to be reminded of.
For example, you may have a field named CallMeetingDate; set the criteria
for this field as Date() and the query will return all calls/meetings etc
for today. Next create a form based on this query. Finally, go to Tools -
Startup and enter this form to display when your database starts.
 
Back
Top