Validating a field

  • Thread starter Thread starter Kim Jackson
  • Start date Start date
K

Kim Jackson

If have a field that I need to be a constant value of
$100 if a value is entered. How can I make a the form
validated what is entered and give a warning if anything
other that $100 is entered.
Thank you for the help.
 
Use the TextBox_BeforeUpdate Event and compare the value in the TextBox with
100.
 
Back
Top