User Accounts

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
 
T

TC

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
 
Top