Different menu's for different users 
Author Message
 Different menu's for different users

is there any way i can have different menu bars appear
for different logged on users in a secure database?

if so how can i do this?

i also need to make sure that the users cannot modify
the menu bar's or view any other menu bar's

thanks in advance

MICK



Sun, 14 Oct 2001 03:00:00 GMT  
 Different menu's for different users
I think this should work.
Sub FormOpen()
    Select Case CurrentUser
            Case "Joe"
                Me.MenuBar = "Joe's MenuBar"
            Case "Mary"
                Me.MenuBar = "Mary's MenuBar"
    End Select
End Sub

Mick skrev i meldingen ...

Quote:
>is there any way i can have different menu bars appear
>for different logged on users in a secure database?

>if so how can i do this?

>i also need to make sure that the users cannot modify
>the menu bar's or view any other menu bar's

>thanks in advance

>MICK



Sun, 14 Oct 2001 03:00:00 GMT  
 Different menu's for different users
1.Yes, use the AutoExec macro to test which user (or group)  and then set
the menu accordingly!

2. Look in Tools/Startup, there's a flag that you can set (allow menu
change), you can also do this through code.

HTH

RB

Quote:

>is there any way i can have different menu bars appear
>for different logged on users in a secure database?

>if so how can i do this?

>i also need to make sure that the users cannot modify
>the menu bar's or view any other menu bar's



Sun, 14 Oct 2001 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Different What's this context ids for different tabs

2. Different Users can't run reports

3. App Won't run under different user rights

4. SQL Server Windows Authentication : How to connect a different user then the current Windows login user

5. SQL Server Windows Authentication : How to connect a different user then the current Windows login user

6. Launching a different database from a different db w/ vba

7. Macro to set different margins on different pages

8. Userform size on different PCs/different resolutions- yikes!

9. What are these DISCO files and Why are they Different in different Directories?- Long Post-

10. SQL select different results on different forms

11. VB - Different behavior on different machines

12. Different color to different lines in textbox

 

 
Powered by phpBB® Forum Software