Search results

  1. O

    Form and Table level validation

    Hello there, I have a form in which I want to validate fields. The following code is working well in the Form_BeforeUpdate event Private Sub Form_BeforeUpdate(Cancel As Integer) If IsNull(Me.OrderNumber) Or Me.OrderNumber& "" = "" Then MsgBox "Must enter Order Number", vbInformation...
Top Bottom