I make a form Data Entry i want it like this if the cursor will go to a certain field he cannot move to the next field if he leave it empty or if it is null.....how can i make this?
Mandatory Data Entry
Collapse
X
-
Tags: None
-
You might be able to use the LostFocus event of the control to test if the control has something in it. If it doesn't then set the focus back to the control. -
Fields in a table, and controls on a form, both have a Required property. Setting either of these to Yes ensures no record is ever entered without a corresponding value for the field.
What you ask for is somewhat different. Be careful of that, as it has an impact when navigating through the controls on a form and can prove unpopular with users (as they can get stuck on one control when they are interested in working within another).Comment
Comment