If you have a form with a Tab Control on it and that Tab Control has two pages, each with its own subform, how can an SQL
command grab the information off of one of the subforms?
INSERT INTO Table
VALUES ([Forms]![ParentForm].[FieldA]);
doesn't work,
INSERT INTO Table
VALUES ([Forms]![ParentForm].[TabCtl1].[SubformA].[FieldA]);
doesn't work,
NSERT INTO Table
VALUES ([Forms]![SubformA].[FieldA]);
doesnt' work.
How can I get the SQL statement to get the information from the field on the subform in the Tab Control in the parent form?
Any help is greatly appreciated.




