OpenNTF.org - Get Logged On User Name For Th
My Links (Not logged in)
Code Bin Search
 
Hosted by Prominic.NET
Rate This Code
5 - brilliant stuff
4 - very nice
3 - average
2 - needs work
1 - bad
   OpenNTF Code Bin
About This Code
Brief Description:
Get Logged On User Name For The Pc 
Rating:
Rating: 4 , Number of votes: 1 
Contributor:
Andrew Jones 
Category:
Lotusscript 
Type:
API Functions 
Last Modified:
17 Jun 2002 
OpenNTF Disclaimer

All of the program code and information presented in the OpenNTF.org Code Bin are provided "as-is", and should be used at your own risk. OpenNTF.org make no express or implied warranty about anything in the Code Bin, and OpenNTF.org will not be responsible or liable for any damage caused by the use or misuse of anything from this site. OpenNTF.org makes no guarantees about anything. Please thoroughly test all of the knowledge and code you find here before you attempt to use them in your production environment.

Code / Description
This simple windows API call will retrieve the user name of the person currently looged on to the computer, be it the network user name, or the Windows customisation user name. Just try it and see, it will come in pretty handy at times, if you want that extra bit of validation, or just want to make sure who the person is via there windows user name.
Usage / Example
Code

Place the following API call into the declrations part of your database:



'-------------------------------------
Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (Byval
lpBuffer As String, nSize As Long) As Long
'-------------------------------------



This next part can go pertty much anywhere:


'-------------------------------------
Dim lpBuff As String * 25
Dim ret As Long

ret = GetUserName(lpBuff, 25)
UserName = Ucase(Left(lpBuff, Instr(lpBuff, Chr(0)) - 1))


Msgbox "User name: " + UserName
'-------------------------------------


I'm really a VB programmer having a go at Lotus Script, so thats why some of it
may look a bit odd or wrong.
 Comments

No documents found

 Add your comment!