I have a form, frmResults
, which contains a subform control, frmResultsSub
.
frmResultsSub
is a subform control which contains a query instead of a form. In other words, its SourceObject property is set to the query, "Query.qrySearch
"
Is there any way I can reference the fields of this query to e.g. to centre text or change field width?
I've tried these statements in the Open Event for frmResults
, but neither was successful:
Me!frmResultsSub.fldA.Width = 600
Me.frmResultsSub.fldA.Width = 600