No Warning of Null Value for a required Field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an input form based on a querry based on a single table which has a
few "Required" fields.

When entering data in the table or in the querry I get the regular message
about the required field not being able to contain a null value.

I am not getting this message when entering data throught the form, and
therefore the data is not being saved and the user never knows that they have
an error.

How can I fix the form to ensure this error message appears, forcing proper
entry?

Thank you
 
Ralph

It sounds like the SetWarnings have been turned off. Check your code behind
the form to see if this is the case. Also check to see if the code behind
the form has error trapping that is bypassing this error.
 
Try putting some data validation on the form, so users cannot save anything
until all the reqiured fields have some data entered.
 
Back
Top