D
Dan @BCBS
When "CO4" is picked from the drop down a form pops up. The user enters some
comments and closes the pop up form. Then when the main form is closed a
window pops up "Write Conflict" ....Copy to Clipboard or Drop Changes.
How can I allow the updates without this message comming up??
Private Sub TR_PROBLEMCODESUFFIX_AfterUpdate()
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "f_Drugs"
If Me.TR_PROBLEMCODESUFFIX = "CO4" Or Me.TR_PROBLEMCODESUFFIX = "MS3" Then
stLinkCriteria = "[ICNNO]=" & "'" & Me![ICNNO] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
End Sub
comments and closes the pop up form. Then when the main form is closed a
window pops up "Write Conflict" ....Copy to Clipboard or Drop Changes.
How can I allow the updates without this message comming up??
Private Sub TR_PROBLEMCODESUFFIX_AfterUpdate()
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "f_Drugs"
If Me.TR_PROBLEMCODESUFFIX = "CO4" Or Me.TR_PROBLEMCODESUFFIX = "MS3" Then
stLinkCriteria = "[ICNNO]=" & "'" & Me![ICNNO] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
End Sub