T TimJ Oct 28, 2003 #1 I need to find who the current user is. The current windows logon name, not the current database user. TIA, TimJ
I need to find who the current user is. The current windows logon name, not the current database user. TIA, TimJ
A Albert D. Kallal Oct 28, 2003 #2 If using ms-access security, then currentuser() will return the ms-access logon. So, currentuser returns the current user name that has logged into ms-access. You can get the current network logon name with: http://www.mvps.org/access/api/api0008.htm And, the current computer name with: http://www.mvps.org/access/api/api0009.htm I often log all 3 of the above values in some applications.
If using ms-access security, then currentuser() will return the ms-access logon. So, currentuser returns the current user name that has logged into ms-access. You can get the current network logon name with: http://www.mvps.org/access/api/api0008.htm And, the current computer name with: http://www.mvps.org/access/api/api0009.htm I often log all 3 of the above values in some applications.