Last usage

R

Rena

Is there a way to determine when a user last used or last access a database?
I need to provide a list of when all users last used an Access 2002 database.
The users are setup in the Access 2002 security file.

Any help would be greatly appreciated. Thank you in advance.
 
J

John Welch

Rena - you might make a table with two fields : username and loginDate. Then
when your startup form opens, run a query to update this table, setting
loginDate = date() where username = currentuser().
hope this helps
-John
 
R

Rena

Thanks John. I will give that I try.

John Welch said:
Rena - you might make a table with two fields : username and loginDate. Then
when your startup form opens, run a query to update this table, setting
loginDate = date() where username = currentuser().
hope this helps
-John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top