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.
 
Derek,

The syntax is:
Me.SubformName.ControlName

HTH,
Nikos
 
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
 

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