Enablle and Disable Associated Fields

B

Butch Dingle

Novice so bare with me.

I have a primary field that when enabled allows access to five associated
fields. However, when I the primary field is disabled I want to disable
some of the assocated fields to prevent rogue data being entered in error.

Any ideas?
 
G

Guest

hi,
the general syntax would be something like this
If primaryField.enable = true then
AssocatedField1.enabled = true
AssocatedField2.enabled = true
else
assocatedField1.enabled = false
assocatedField2.enabled = false
end if
 
Top