Form Entering Negative Only

  • Thread starter Thread starter rciolkosz
  • Start date Start date
R

rciolkosz

Where and how would I put an expression or validation to display a negative
number in the form when entering?
 
use the "After Update" event of the text box and try something like
if txtSomeName.text<0 then
msgbox "You have entered a negative number"
txtSomeName.setfocus
txtSomeName.text=""
end if
 
Back
Top