I have a main form Form_frmSale
and it contain a sub-form frmSale_subform
.How can I "access" the fields in subform
For e.g with no subform i would do Sale_Date.Enabled = True
What code should i put if i want to control subform fields from main form(Suppose Sale_Date
is in a subform
I tried the following but its not working
Me.frmSale_subform.Sale_Date.Enabled = True
frmSale_subform.Sale_Date.Enabled = True