Hide checkboxes on a Form with the 'Continuous Forms' property?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have received a request to hide the checkboxes next to record where the
'Form name' field contains the word 'Divider'. I can do this if the Form
Property for 'Default View' is set to 'Single Form', but my code to hide the
check boxes hides check boxes for every record (in the Form's On Load' Event)
when the Form Property for 'Default View' is set to 'Continuous Forms'.
The user needs to see the 'Continuous Forms' for other reasons, so is there a
way to have these check boxes disappear depending on whether the keyword
'Divider' is present in the Form name?
 
Pat,

A continuous form just uses the same controls for every record. Therefore,
you cannot hide a control for one record and not for the others.
 
Back
Top