Private Sub ProductDesc_BeforeUpdate(Cancel As Integer)
'On Error GoTo Err_ProductDesc_BeforeUpdate
If IsNull(Forms![frmNewProduct]![cmbVendor].Value) Then
MsgBox "First enter a VENDOR!", vbCritical, "No Vendor"
Cancel = True
Me![ProductDesc].Undo
Forms![frmNewProduct]![cmbVendor].SetFocus
Exit Sub
End If
End Sub