Hi, I have created a navigation form with several tabs; one is a form welcome page, the second is a form with various records containing contact information, and the other tabs are reports.
I would like to be able to click on a person's name in any of the reports and have it open that person's contact information under the "Contacts Form" tab in the navigation form.
I have searched and searched online, but all I have found is a code that will almost do that. The problem is, that it opens the original form and not the one within the navigation form.
If it helps at all, here is the code that I tried:
Dim EntityName As String
Dim DocName As String
DocName = "frm_Contacts"
strWhere = "[Full_Name]='" & Full_Name & "'"
DoCmd.OpenForm DocName, acNormal, , strWhere
I appreciate any help! Thank you
I would like to be able to click on a person's name in any of the reports and have it open that person's contact information under the "Contacts Form" tab in the navigation form.
I have searched and searched online, but all I have found is a code that will almost do that. The problem is, that it opens the original form and not the one within the navigation form.
If it helps at all, here is the code that I tried:
Dim EntityName As String
Dim DocName As String
DocName = "frm_Contacts"
strWhere = "[Full_Name]='" & Full_Name & "'"
DoCmd.OpenForm DocName, acNormal, , strWhere
I appreciate any help! Thank you