folks..any ideas on how to enable an Ms Access database to send an e-mail when it is updated
is it easier to do from within access or via a .NET app ( doing a simple check on the db tables to look for changes)
any ideas
thanks
folks..any ideas on how to enable an Ms Access database to send an e-mail when it is updated
is it easier to do from within access or via a .NET app ( doing a simple check on the db tables to look for changes)
any ideas
thanks
ms access
Stormin Norman
Hi,
1. When data was updated
I don't think you can automatically "triggered" by a change to database in Access. What you have to do is to check the updated time of the table manually.
Try this.
For Each obj in Application.AllTables
Debug.Print obj.DateModified
Next
2. Sending Emails
Have you ever consider using automation and control Outlook to send email for you
Hope this can help.
Pedro Felix
Howard B
any thoughts on how to figure that an update has occurred to the access database if so i think i can use a macro to send an email
tx