josephbupe
Registered User.
- Local time
- Today, 05:20
- Joined
- Jan 31, 2008
- Messages
- 247
I have two forms; a main form (frmPerson) and its companion form (frmPerson_Fingerprints). Their data source tables are linked with a one-to-one relationship and the user usually would open the companion form (Person_Fingerprints) by click of a button on the main form. The code is:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmPerson_Fingerprints"
stLinkCriteria = "[FprintID]=" & Me![PersonID]
What I would like to do is whenever the main form opens the companion form should also open with it, but only with the record related to the current record in main form.
I will appreciate your help.

Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmPerson_Fingerprints"
stLinkCriteria = "[FprintID]=" & Me![PersonID]
What I would like to do is whenever the main form opens the companion form should also open with it, but only with the record related to the current record in main form.
I will appreciate your help.