Re: Different FE's for different users
- From: "BruceM" <bamoob@xxxxxxxxxxxxxxxx>
- Date: Wed, 19 Mar 2008 11:58:26 -0400
When there is user-level security I have used group membership to show or hide controls, etc. In a form's Load event I may have something such as:
If Not UserGroup("Admins") Then
Me.cmdSecurity.Visible = False
Else
Me.cmdSecurity.Visible = True
End If
The database uses a startup form that includes the command button cmdSecurity, which opens a form that includes toolbars and other information used to administer database security, but it could have been any form. The users who are not a member of the Admins group don't see the command button.
"ant1983" <ant1983@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:49817355-FCB8-44D1-9670-A95BF8F235E2@xxxxxxxxxxxxxxxx
Hi,
Not sure if this is under the correct topic - If not, apologies...
My database (a BE and the copies of the FE on each user's computer) will
soon be live in my client's enviroment.
I would like to know the following:
I would like different FE's on certain user's machines - What is the best
way to do this.
Some context: I would like the director of the company to be able to have
access to all menu's and to be able to have unlimited restrictions in terms
of editing etc.
I would further like for the clerks to only have limited access and editing
restrictions.
How would i proceed with this?
Many thanks for assistance!!
Wayne
.
- References:
- Different FE's for different users
- From: ant1983
- Different FE's for different users
- Prev by Date: Re: Difficult one :) - Logging changes in my database made
- Next by Date: Trending
- Previous by thread: RE: Different FE's for different users
- Next by thread: Difficult one :) - Logging changes in my database made
- Index(es):
Relevant Pages
|