Address Check Test-davegri-v01.zip
Basically changed the recordsource for the subform when Command7 is clicked.
Code:
Option Compare Database
Option Explicit
Private Sub Command7_Click()
On Error GoTo Error_Handler
Me![Check Data Sub].Form.RecordSource = "qry_Check_Field_Lengths"
Error_Handler_Exit:
On Error Resume Next
Exit Sub
Error_Handler:
Select Case Err
Case Else
MsgBox "Error " & Err.Number & " (" & Err.Description & ")", vbExclamation, "Error in Sub Command7_Click of Form_frmCheckData"
End Select
Resume Error_Handler_Exit
Resume
End Sub