Security

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)
 
C

Cheryl Fischer

The CurrentUser method will do that for you, since you are using Access
Security:

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