T
tim timsen
Guest
How do I make data entry required, I've sent it to be in the table but it doesnt seem to work in the form
I've tried the below with no luck
Cheers
I've tried the below with no luck
Code:
Private Sub Command14_Click()
If tbName = Null Or tbTelephone = Null Or tbAddress = Null Then
MsgBox "Please complete all details.", vbExclamation
Else
DoCmd.Close
DoCmd.OpenForm "frmInvoice"
DoCmd.MoveSize , , 5100
End If
End Sub
Cheers
Last edited: