
September 1st, 2004, 09:41 AM
|
|
Registered User
|
|
Join Date: Aug 2004
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Denying functionality based on user permissions
I had posted this before, but I have not received any replies and still can't find a way to do it. No, I won't keep spamming the board if I don't get a response, but if anyone can at least point me in a good direction I would appreciate it. I have been to various forums and the MS pages, no luck so far...
I need to disable a command button based on the security group of the current user. Is there a property or something I can access that will allow me to do this programmatically? Basically this is what I need to do (pseudocode):
Private Sub Form_Load()
' If user is not a member of the administrator group
' MyButton.Enabled = False
' End If
End Sub
I still want everyone to be able to have access to the startup form, just deny certain functionality to non-admin users. Anyone know of a way to reference Current user permissions? Thanks!
|