Feb 28, 2003 #1 Data69 Technical User Jan 24, 2003 24 US I have a multi-user database and I want to capture the logon user name in my table when a record is updated. How do I do this?
I have a multi-user database and I want to capture the logon user name in my table when a record is updated. How do I do this?
Feb 28, 2003 #2 rdmartin Programmer Dec 30, 2002 8 US Capture the CurrentUser in a string variable then update the record with that value. Dim UserName as String UserName = CurrentUser Upvote 0 Downvote
Capture the CurrentUser in a string variable then update the record with that value. Dim UserName as String UserName = CurrentUser