September 20, 200718 yr 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, 200718 yr by Guest
September 20, 200718 yr 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, 200718 yr by Guest
Create an account or sign in to comment