Hi Guys,
I need to set validation rule on a field. I have done the the below:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If IsNull(Me.SlideType) Then
MsgBox "You have not entered SlideType!", vbExclamation + vbRetryCancel, "Incomplete Form!"
Cancel = True
Me.SlideType.SetFocus
End If...