R rciolkosz Jan 7, 2010 #1 Where and how would I put an expression or validation to display a negative number in the form when entering?
Where and how would I put an expression or validation to display a negative number in the form when entering?
B Bk_Si Jan 7, 2010 #2 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
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