Query about log in and log out of users

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

Guest

Hi,
I'm working on a database for Purchase Orders, and the file is on the server
in the Company's Intranet.
I set several users and passwords, and I would like to know if it's possible
to create a query about log in and log out of users (i.e. user name, date and
hour of log in, date and hour of log out).

Thank you in advance.

Kindest regards
 
Hi,



Loging in is relatively easy: in the form that opens when your
application starts, append a record in a table at that effect. CurrentUser
and Now() hold the data you want to append.

The log out is a little bit tricky, since a user can brutally close the
application, without using the proper procedure. Unreliable is then to
append the same info, when the user leaves out properly you front end
application.


Hoping it may help,
Vanderghast, Access MVP
 
Back
Top