Enablle and Disable Associated Fields

  • Thread starter Thread starter Butch Dingle
  • Start date Start date
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?
 
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
 
Back
Top