HI,
Let's say I have a subform with five text fields in it. I want to put a button into the form and when I click the button, I want it to make all five text fields "protected". Is there a way to address all five text fields as a single entity so that I only have to write one line of code to protect them all?
Instead of saying textfield1.access = "protected"; textfield2.access = "protected"; textfield3.access = "protected"; and so on...
I would rather say textfield_group.access = "protected";
Do "groups" work like that or is there a better way to do this?
Thanks,
Joe