Need a macro for a form!

C

Cesar Urquidi

Hello,
I would like to create a macro for a command button that can do the following:

Go to: Tools\Security\User and Group Accounts
Once the "User and Group Accounts" windows is open, I want to open the
"Change Logon Password" tab.

Is this possible???
 
F

fredg

Hello,
I would like to create a macro for a command button that can do the following:

Go to: Tools\Security\User and Group Accounts
Once the "User and Group Accounts" windows is open, I want to open the
"Change Logon Password" tab.

Is this possible???

How about 1 line of code?

DoCmd.RunCommand acCmdUserAndGroupAccounts
 
C

Cesar Urquidi

It worked fine, but I want it to go to the "Change Logon Password" tab.

How do I do that???
 
Top