I am using a continous form to go to other detailed forms. I have the continuous form close so updated field are shown when I return. The problem is, it returns with all records showing in it's original sort order. I have also tried this code,
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Customer Phone List"
stLinkCriteria = "[ContactID]=" & Me![ContactID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Close acForm, "Contacts"
On a Close Button but in the Contacts form and only get the one record showing. Can I pass the ContactID to a
DoCmd.GoToRecord in the On Open event of the Customer phone list.
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Customer Phone List"
stLinkCriteria = "[ContactID]=" & Me![ContactID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Close acForm, "Contacts"
On a Close Button but in the Contacts form and only get the one record showing. Can I pass the ContactID to a
DoCmd.GoToRecord in the On Open event of the Customer phone list.