N
Nick
I have an Event Procedure below which works, however a
message box appears to confirm whether or not I want to
carry out this action. Can anyone show me what code I need
to use to suppress this message?
Assistance is greatly appreciated.
Nick
Private Sub Re_Date_Click()
On Error GoTo Err_Re_Date_Click
Dim stDocName As String
stDocName = "qyOrders-Update_tbOrders-Temp-Date"
DoCmd.OpenQuery stDocName, acNormal, acEdit
Me![Orders-sub1].Requery
Exit_Re_Date_Click:
Exit Sub
Err_Re_Date_Click:
MsgBox Err.Description
Resume Exit_Re_Date_Click
End Sub
message box appears to confirm whether or not I want to
carry out this action. Can anyone show me what code I need
to use to suppress this message?
Assistance is greatly appreciated.
Nick
Private Sub Re_Date_Click()
On Error GoTo Err_Re_Date_Click
Dim stDocName As String
stDocName = "qyOrders-Update_tbOrders-Temp-Date"
DoCmd.OpenQuery stDocName, acNormal, acEdit
Me![Orders-sub1].Requery
Exit_Re_Date_Click:
Exit Sub
Err_Re_Date_Click:
MsgBox Err.Description
Resume Exit_Re_Date_Click
End Sub