what i want to do is, I want to set access right to user, If I have 2 kind of users, one is for admin and other one for user, so some textbox i don't want normal user can access it only admin account can. any idea please let me know.
I have two Form, 1- frmmain and it have txttest
2-frmlogin and it have username and password text box.
after I login to frmlogin form correct, then I want to my txttest in frmmain to
enable=true
my code is
docmd.openform "frmmain"
Forms!frmmain!txttest.enable = true
I wrote this code in the...