Can anyone point out my problem here? I'm using this procedure to open a new form and go to the record with the same value as the one I've clicked. It opens the new form, but doesn't go to the record, just opens blank. Thanks.
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "View Client Info"
stLinkCriteria = "[ClientID]=" & Me![ClientID]
DoCmd.OpenForm stDocName, acNormal, , stLinkCriteria
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "View Client Info"
stLinkCriteria = "[ClientID]=" & Me![ClientID]
DoCmd.OpenForm stDocName, acNormal, , stLinkCriteria