I'm not sure if anyone can help me with this without knowing my database, but I just thought I'd give it a shot.
I used the command button wizard to help look up a specific record on another form (called MAINfrm) based on the information in my current form (called frmFIND). On click, it works perfectly fine EXCEPT before it directs me to the correct record in the MAINfrm form, an "Enter Parameter Value" message pops up. The value it is asking for is an ID that's in one of the subforms in the MAINfrm I plan to open.
My question is, how would I get rid of this? I don't even need to enter a value in and it still works fine. Could anyone give some suggestions on what I can check?
btw, here's the code I currently have for it:
Private Sub OpenFRM_Click()
On Error GoTo Err_OpenFRM_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "MAINfrm"
stLinkCriteria = "[FirstName]=" & "'" & Me![FirstName] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_OpenFRM_Click:
Exit Sub
Err_OpenFRM_Click:
MsgBox Err.Description
Resume Exit_OpenFRM_Click
End Sub
I used the command button wizard to help look up a specific record on another form (called MAINfrm) based on the information in my current form (called frmFIND). On click, it works perfectly fine EXCEPT before it directs me to the correct record in the MAINfrm form, an "Enter Parameter Value" message pops up. The value it is asking for is an ID that's in one of the subforms in the MAINfrm I plan to open.
My question is, how would I get rid of this? I don't even need to enter a value in and it still works fine. Could anyone give some suggestions on what I can check?
btw, here's the code I currently have for it:
Private Sub OpenFRM_Click()
On Error GoTo Err_OpenFRM_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "MAINfrm"
stLinkCriteria = "[FirstName]=" & "'" & Me![FirstName] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_OpenFRM_Click:
Exit Sub
Err_OpenFRM_Click:
MsgBox Err.Description
Resume Exit_OpenFRM_Click
End Sub