Try use this code:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "NewFormNameHere"
stLinkCriteria = "[RecordID]=" & "'" & Me![RecordID] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Hope this helps.
I need to code the On click event. When the use clicks on example; "the name
field" the a pop-up page is filtered comes up with additional info on that
record.
:
Us the OnCurrent event of the continuous form. This event fires when the
focus changes from one record to another (in other words, when you click a
record).
Rick B
How can create pop-up edit form. When the user click on the record
selector.