get user name

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

after i use MS Workgroup to setup all the user name
security, how am i able to get the user name after user
logged in?
Thanks for the answer!
 
The CurrentUser method will do that, for example:

MsgBox("The current user is: " & CurrentUser)

hth,
 
Back
Top