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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top