checking a control on a subform

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

Guest

If I wanted to check a checkbox on a subform would I use the following or am I way off base

me.CSA_Comments_subform.Controls.Item.control_nam

Thanks.
 
If I wanted to check a checkbox on a subform would I use the following or am I way off base:

me.CSA_Comments_subform.Controls.Item.control_name

Thanks.

Close: the exact syntax uses the Form property of the Subform control
(NOT necessarily the same as the name of the form within that
control):

Me!CSA_Comments_Subform.Form!control_name
 
Back
Top