Query to get values from unbound form controls

  • Thread starter Thread starter CW
  • Start date Start date
C

CW

I have several unbound text boxes on my forms and would like to use a query
to get this data so that I can use it elsewhere.
The structure is that I have a Main page with tabs and then subforms on the
tabs. The text boxes are on those subforms. What would the syntax be, to grab
the data from there?
Many thanks
CW
 
Forms!MainForm!SubformControl.Form!ControlOnForm

Note: SubFormControl refers to the name of the control (window) that
holds the subform, which may or may not be the same as the name
of the subform itself.
 
Back
Top