Permissions

S

Secret Squirrel

Is there a way to open the permissions window from a command button on a form?
 
C

Clifford Bass

Hi Secret Squirrel,

Yes. Use

DoCmd.RunCommand acCmdUserAndGroupPermissions

You can also use

DoCmd.RunCommand acCmdUserAndGroupAccounts

to get the accounts dialog.

Clifford Bass
 
S

Secret Squirrel

Thanks Clifford!

Clifford Bass said:
Hi Secret Squirrel,

Yes. Use

DoCmd.RunCommand acCmdUserAndGroupPermissions

You can also use

DoCmd.RunCommand acCmdUserAndGroupAccounts

to get the accounts dialog.

Clifford Bass
 
Top