Executing scripts when a new user is created.

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

Guest

Is it possible to execute a script or macro when a new user is created or
modified? To be more specific, I wish to insert a row in a table every time a
new user is created or modified.
 
Through the standard Access interface? No. Also, you need to keep in mind
that users can be added even when your application isn't open...i.e., if an
admin logs in using your workgroup file, it doesn't matter what database
they have open....they'd still be able to add users.

The best you could do for this situation is have code execute during
application start, or periodically from a hidden form during a timer event
(not recommended). Why is it exactly that you that you need the users in a
table?
 
Back
Top