> Hi,
>
> I have developed a Menu using create menu. It is working fine. I want to block some users from accessing some items of menu.
>
> for example:
>
> Main Menu
> .....Pay Roll
> ..........Employee Master
> ..........Salary Preparation
> ..........Bonus Calculation
> ..........Attendance Entry
> ..........------------------
> ------
>
> There are two users. Admin & User. I want to block Bonus calculation to User. Is there any way? How I can use SKIP FOR in this condition?
>
>
> Prasant
_Screen.AddProperty("Login_Group","")
_Screen.Login_Group = ‘Admin’ && track the login group in your program
In the Menu Designer -> Prompt Options -> Skip For
_Screen.LoginGroup <> "Admin"
Save, Generate and run.
Instead of using all those login screens, encryption of passwords, you can use Windows own security means Windows User Accounts. Then give Form wise access for Adding, Editing, Printing, Deleting, Emailing etc.
With Reagrds,
Biju Thomas