global variables....user name

  • Thread starter Thread starter davidjurban
  • Start date Start date
D

davidjurban

How can I get the user name that was entered in Access security for us
in VBA?
Thanx in advance,
Dave Urba
 
CurrentUser method will return the user of the application. strUserNam
= Environ("UserName") will return the user logged into windows
 
CurrentUser method will return the user of the application. strUserNam
= Environ("UserName") will return the user logged into windows
 
Back
Top