When I put some wrong value in the field the cursor not stay in the same filed its skip to next field. The code is as under:-
Private Sub RollNo_BeforeUpdate(Cancel As Integer)
If (RollNo.Value > 1) Or (RollNo.Value < 22) Then
MsgBox "Roll No is Wrong, Please Type correct Roll No"
Cancell = True
End If
End Sub
The RollNo is numeric field. I need help from the expert. How to stop the cursor in the box if I put wrong number.