Ralph Schwegler Posted September 20, 2007 Posted September 20, 2007 (edited) Dear members, I'm in trouble with following: a user logs in with a Password on the Database to define his access rights (USER, TEAMLEADER, ADMIN) then he logs in with a user/pass combo in a password database so far so good now, depending on the kind of access he choose (for instance a teamleader can login as user) i want FileMaker Pro 6 to act arcondingly (for instance, a user sees his adresses, a teamleader sees the addresse of his team. what would be the most elegant solution to this trouble? best regards Edited September 20, 2007 by Guest
BowDown Posted September 20, 2007 Posted September 20, 2007 (edited) Create an onLoad script that will check the current username logged in, and direct them to the correct layout view. If (Get(AccountName) = "user") Go To Layout (user) Else If (Get(AccountName) = "teamleader") Go To Layout (teamleader) End If Edited September 20, 2007 by Guest
Recommended Posts
This topic is 6544 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now