vote up 1 vote down star

I want to get the name of user who have logged-in ,in the access vba. What is the best way to get it


Duplicates of this question:

flag

2 Answers

vote up 4 vote down check
Public Declare Function GetUserName Lib "advapi32.dll" 
    Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long

....

Dim strLen As Long
Dim strtmp As String * 256
Dim strUserName As String

strLen = 255
GetUserName strtmp, strLen
strUserName = Trim$(TrimNull(strtmp))

Turns out question has been asked before: http://stackoverflow.com/questions/168659/how-can-i-get-the-currently-logged-in-windows-user-in-access-vba/168682

link|flag
I didn't see that the question has been asked before. Thanks, anyways – Varun Mahajan Mar 24 at 13:51
vote up 0 vote down

Try this:

Function UserNameWindows() As String
     UserName = Environ("USERNAME")
End Function
link|flag
Bear in mind that this can be changed by users/applications... – Mitch Wheat Mar 24 at 12:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.