securing elements in forms

  • Thread starter Thread starter Dmitrus
  • Start date Start date
D

Dmitrus

Hi. I need to activate for write some controls in my form, such as checkbox,
only for some domain groups.
Please help me if it possible.
 
You would put code behind the form, in the Item_Open event handler to change
the attributes of the relevant controls. See
http://www.outlookcode.com/article.aspx?ID=38 for control syntax.

Note, however, that any such "security" will not stop a determined user who
wants to access the data. If a form needs to display data only to certain
users, consider storing that data in a different location that can be secured
at the folder level.
 
Back
Top