A
ADB_Seeker
On my form's field (DRAWING_NUMBER) I need Access to look to see if a
checkbox (RFP_Issued) is checked in the table (ER TABLE). If it is, I need a
message box to popup. I've coded it many ways and receive run-time error
2465 or 13. Following is my current code:
Private Sub DRAWING_NUMBER_BeforeUpdate(Cancel As Integer)
If ([ER TABLE].[RFP Issued]) = 0 Then
MsgBox "A RFP has been issued on this drawing." & vbLf & _
" Nofify Engineering Manager or Administrator before making any
changes."
End If
End Sub
Thank you in advance for your help.
Linda
checkbox (RFP_Issued) is checked in the table (ER TABLE). If it is, I need a
message box to popup. I've coded it many ways and receive run-time error
2465 or 13. Following is my current code:
Private Sub DRAWING_NUMBER_BeforeUpdate(Cancel As Integer)
If ([ER TABLE].[RFP Issued]) = 0 Then
MsgBox "A RFP has been issued on this drawing." & vbLf & _
" Nofify Engineering Manager or Administrator before making any
changes."
End If
End Sub
Thank you in advance for your help.
Linda