Form Entering Negative Only

R

rciolkosz

Where and how would I put an expression or validation to display a negative
number in the form when entering?
 
B

Bk_Si

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top