G
Guest
Okay. I'll do my best to explain.
I have a main form where if someone chooses "03" for a field RESLT, it
automatically opens a form frmServedInfo for the user to complete additional
information. Below is the code to open the form and this works.
Dim stInfoForm As String
Dim stLinkCriteria As String
stInfoForm = "frmServedInfo"
stLinkCriteria = "([SUMMONS].[SERVNO])=" & Me![SERVNO]
If Me!RESLT = "03" Then
DoCmd.OpenForm stInfoForm, , , stLinkCriteria
End If
HOWEVER, once the form is open and the user completes the form, I keep
getting a Write Conflict Error. And eventually ends in Unrecognized
Database.
I have a main form where if someone chooses "03" for a field RESLT, it
automatically opens a form frmServedInfo for the user to complete additional
information. Below is the code to open the form and this works.
Dim stInfoForm As String
Dim stLinkCriteria As String
stInfoForm = "frmServedInfo"
stLinkCriteria = "([SUMMONS].[SERVNO])=" & Me![SERVNO]
If Me!RESLT = "03" Then
DoCmd.OpenForm stInfoForm, , , stLinkCriteria
End If
HOWEVER, once the form is open and the user completes the form, I keep
getting a Write Conflict Error. And eventually ends in Unrecognized
Database.