Dec 1, 2006 #1 May2000 Programmer Joined Dec 1, 2006 Messages 9 I need to save the default/logged user to a "field" in a table so that I can tract who is changing or adding records. What should I do? Thanks.
I need to save the default/logged user to a "field" in a table so that I can tract who is changing or adding records. What should I do? Thanks.
Dec 2, 2006 #2 Remou Technical User Joined Sep 30, 2002 Messages 13,030 Location BE You can use: http://www.mvps.org/access/api/api0008.htm Or: CurrentUser() But without Access security, this will return "Admin". Or: MsgBox Environ("UserName") Returns the network login name, depending on your set-up. Upvote 0 Downvote
You can use: http://www.mvps.org/access/api/api0008.htm Or: CurrentUser() But without Access security, this will return "Admin". Or: MsgBox Environ("UserName") Returns the network login name, depending on your set-up.