Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hiding check boxes until required by data entry

Status
Not open for further replies.

fergua

IS-IT--Management
Aug 28, 2001
1
GB
I need to set up a form so that checking a box in the affirmative triggers the display of a set of 8 other check boxes. If the check box is left unchecked then there is no need to complete these others, so they are better hidden....please give me any help you can...I have looked at all my sources and can't find the answer..
 
Could try in the after_update of the Check box and put something like:
if checkbox = -1 then (or maybe checkbox.value)
othercheckboxes.visible = true
else
othercheckboxes.visible = false
end if

Nick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top