sambo
Registered User.
- Local time
- Today, 13:22
- Joined
- Aug 29, 2002
- Messages
- 289
I have established whether or not a user is an admin based on the login form and table i created. Now i need to let admin view and design tables, and allow all other users only to use forms.
Something like this:
If Admin = True Then
AllTables.Visible = True
AllTables.Designable = True
Else
AllTables.Visible = False
AllTables.Designable = False
End If
Can I do something similar to this. I'm trying to make a very quick fix to keep stupid users from deleting data in the tables.
Ps.. I do not want to use groups or security wizard or anything that in depth. Not worth all the hassle.
Something like this:
If Admin = True Then
AllTables.Visible = True
AllTables.Designable = True
Else
AllTables.Visible = False
AllTables.Designable = False
End If
Can I do something similar to this. I'm trying to make a very quick fix to keep stupid users from deleting data in the tables.
Ps.. I do not want to use groups or security wizard or anything that in depth. Not worth all the hassle.