Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I would like to make my macro to retrieve the current NT domain user login ID. Does anyone know how to code? Thanks a lot. Terence |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Terence,
Here is a function to do it Public Declare Function GetUserName Lib "advapi32.dll" _ Alias "GetUserNameA" _ (ByVal lpBuffer As String, _ nSize As Long) As Long Public Function UserName() As String Dim sName As String * 256 Dim cChars As Long cChars = 256 If GetUserName(sName, cChars) Then UserName = Left$(sName, cChars - 1) End If End Function -- HTH Bob Phillips "Terence" wrote in message ... Hi, I would like to make my macro to retrieve the current NT domain user login ID. Does anyone know how to code? Thanks a lot. Terence |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell locking based on domain user | Excel Worksheet Functions | |||
How to separate user name and domain name in email id? | Excel Discussion (Misc queries) | |||
2007 Converter wont work as domain user | Excel Discussion (Misc queries) |