Hi super forum gurus
I have what I hope is a simple problem. On tab D4 I have 2 subforms. The subforms are summary information and are not editable. When the user clicks on the statement text box, an edit form opens. The top subform performs as expected. The bottom subform does not when I click the text box for the bottom form, the linked edit form is blank.
I am using this code.
I have also tried
with the same failed result
I have also compacted and repaired the database.
Thank you for your time.
Sandy
I have what I hope is a simple problem. On tab D4 I have 2 subforms. The subforms are summary information and are not editable. When the user clicks on the statement text box, an edit form opens. The top subform performs as expected. The bottom subform does not when I click the text box for the bottom form, the linked edit form is blank.
I am using this code.
Code:
Dim strDocName As String
Dim strLinkCriteria As String
strDocName = "fEditEscapePoint"
strLinkCriteria = "[EPointID] = " & Me![EPointID]
DoCmd.OpenForm strDocName, , , strLinkCriteria
Code:
"[EPointID] = Forms![fInformation]![childEscapePoint].Form![EpointID]"
I have also compacted and repaired the database.
Thank you for your time.
Sandy