I would use something like this to open the second form:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "YourFormName"
stLinkCriteria = "[CoID]=" & Me![CoID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
This is in the OnClick event of the cmdButton. I have...