Logging users

  • Thread starter Thread starter asset via AccessMonster.com
  • Start date Start date
A

asset via AccessMonster.com

I'm trying to log users who have accessed or are accessing a database (Access
97). Does access 97 provide a utility that does it, if not can it be done?

Thanks
 
There is no built in feature. You will have to build it. Most people do so
by opening a form with the database. They open the form as "hidden" and
they tie code to it in the OPEN and CLOSE event. The OPEN event adds a
record to a table including the UserID, Date, Time, etc. The CLOSE event
can be coded to find that record and update it with a time and date closed.

There are lots of ways to do it, but the short answer is that there is no
built-in feature for this.
 
sounds great.. but how exactly.... grateful if you could set me on the road.
Any ideas on how???

regards
 
Back
Top