I have a form set up where I view one record at a time. I have arrows were I can scroll through records, or I can search in any of the fields on the form for a specific record.
I have a box that lists all of the records I have viewed and I can click the specific listing to open that record in the previous form mentioned. when I do that though it only opens that one record for viewing so I cannot use my arrows or search. Here is the code I use
Is there a way I can open a form to a specific record but also have all the other forms open?
I have a box that lists all of the records I have viewed and I can click the specific listing to open that record in the previous form mentioned. when I do that though it only opens that one record for viewing so I cannot use my arrows or search. Here is the code I use
Code:
Private Sub List0_DblClick(Cancel As Integer)
DoCmd.OpenForm "MD_ActView", , , "[ID] = " & Me![List0] & ""
End Sub
Is there a way I can open a form to a specific record but also have all the other forms open?