Abraham,
You could have one form with the data from your header table then the second
form should be for the detail (survey responses?). In order to link the
frmHeaderInfo to the frmSurveyDetail, you can create a query for the
frmSurveyDetail (from the table tblSurveryDetail) and in the criteria
section of the query, use the expression builder to point to the unique ID
field in frmHeaderInfo. Use that query as the record source for your
frmSurveyDetail. Then put a button on your frmHeaderInfo to open the
frmSurveyDetail. It will only show the information for the record you are
currently on on frmHeaderInfo.
It sounds like you have too much info to fit on a subform or tab control,
that is why my example is using two separate forms.
Hope this helps,
Jackie