Utility to keep track of users and their names those who are logge

J

Jack

Hi,
I am trying to find a utility which will keep track of names of people that
are
logged on in a Access application. Is there any such utility available? Any
help is appreciated. Thanks.
 
A

Allen Browne

If you just want to know who is logged in at some point in time, see:
How to determine who is logged on to a database by using Microsoft Jet
UserRoster in Access 2000
at:
http://support.microsoft.com/default.aspx?scid=kb;en-us;198755&Product=acc2000

If you want to record a permanent log, use your initialization routine
(AutoExec macro, or Open event of your startup form) to insert a an entry
into your log table based on CurrentUser(). Keep a form open but hidden, and
use its Close event to record the user's exit from the database.
 
Top