User Accounts

  • Thread starter Thread starter Kevin S.
  • Start date Start date
K

Kevin S.

Any way to set a user account password by using a form? If possible, how can
I get the user names too?

thanks
kevin
 
To change passwords, check out the NewPassword method in online help.

To get all the usernames in the current workgroup file:

dim u as user
for each u in dbengine(0).users
msgbox u.name
next

HTH,
TC
 
Back
Top