LogIn Table

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

Guest

Is there any way to generate a table that would include the Windows Login ID
and the date and time of the login to the database, and then attach that
information to each record ?
 
Hendricks97 said:
Is there any way to generate a table that would include the Windows Login
ID
and the date and time of the login to the database, and then attach that
information to each record ?

Sure. You can get the Windows login from an api:

http://www.mvps.org/access/api/api0008.htm

and just write that function return to a field in the record. For the
timestamp, just add a date/time field to the table and set its DefaultValue
to:

= Now()
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 

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

Back
Top