Real Wally
Registered User.
- Local time
- Today, 12:46
- Joined
- Jan 28, 2003
- Messages
- 107
Users of my DBs get view/edit privileges on forms based on their loginname.
If fPrivileges("E") = True Then
Me.AllowEdits = True
Else
Me.AllowEdits = False
End If
Works fine except that when somebody is not allowed to edit the form the comboboxes to quickly find a record are also disabled.
I've tried Me.NameCombobox.Enabled = True but that doesn't do the trick.
Is there a way around this?
Thanks,
Wally
If fPrivileges("E") = True Then
Me.AllowEdits = True
Else
Me.AllowEdits = False
End If
Works fine except that when somebody is not allowed to edit the form the comboboxes to quickly find a record are also disabled.
I've tried Me.NameCombobox.Enabled = True but that doesn't do the trick.
Is there a way around this?
Thanks,
Wally