Log users accessing the database

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

Guest

I just want to save the username and a time and date stamp to my database
table.
When someone opens the database it must be logged.
Something like this:
username:bill
Logged in at: 19:35 13-07-05
Opened: db1.mdb
 
Help Please said:
I just want to save the username and a time and date stamp to my database
table.
When someone opens the database it must be logged.
Something like this:
username:bill
Logged in at: 19:35 13-07-05
Opened: db1.mdb

Check out "ENVIRON" in the help.

Regards,
Keith.
www.keithwilby.com
 
I'd either use the autoexec macro, or create a form that opens with the
database and includes code to do this.

You can use =CurrentUser() to log the current user if your
database is secured.
 
Are you saying that whever someone opens /any/ database, you want to
add a record to a /central/ dartabase?

TC
 
Back
Top