After the validation the focus was not set to the particular control.
It moves to the next control.
Please let me know who to set focus after AfterUpdate event.
Private Sub txtName_AfterUpdate()
If Not IsNull(Me.txtName.Value) Then
MsgBox ("Not Null")
Else
MsgBox "Enter Name!", vbInformation
Me.txtName.SetFocus
End If
End Sub
Thanks
Jambai