Security

  • Thread starter Thread starter Net
  • Start date Start date
N

Net

Hi,

I would like to know, how can i retrieve the user who
loged into the mdb file, and use it for tracking updates
(history log)?

(I defined groups and user rights, within the access mdw
file)
 
The CurrentUser method will do that for you, since you are using Access
Security:

For example: MsgBox("The current user is: " & CurrentUser)
 
Back
Top