crpav
Posts: 3
|
| Posted: 10/29/2004, 8:01 AM |
|
Hello,
I want to control the display of some fields in a record form,
using a security level table.
If the user has level 1, the field must be hidden (visible=false?)
If level 2, the field must be shown, but cannot be updated (label?)
If level 3, the field must be updateable (listbox, textbox, etc.)
How will be the most simple and effective way to do this ?
Thank you !
Charlie
|
 |
 |
mrachow
Posts: 509
|
| Posted: 10/31/2004, 12:27 PM |
|
An idea.
Place a label beside a textfield for every one of your fields.
Level 1: hide both
Level 2: Hide textbox
Level 3: Hide Label
Disadvantage: You have empty cells at your record form for level 1.
I remember that I have seen examples for removing empty columns but I think it was not that easy.
Or you would create a different form for level 1.
Level 1: Hide form 2
Level 2,3: Hide form 1 plus behave like above.
Regards,
Michael
_________________
Best regards,
Michael |
 |
 |
|