What would be the best way to check that text is a positive whole
number? I'm thinking about putting it in the textbox_exit event.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
What would be the best way to check that text is a positive whole
number? I'm thinking about putting it in the textbox_exit event.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Hi
Exit is too late. Use the Keypress event. Set keyascii to 0 if its < 48 or
>57.
Except (tricky part coming up): Keydown event to trap and validate Ctrl V.
HTH. Best wishes Harald
"Claud Balls" <Lion@trainer.com> skrev i melding
news:eM$%23K7q8EHA.1084@TK2MSFTNGP15.phx.gbl...
> What would be the best way to check that text is a positive whole
> number? I'm thinking about putting it in the textbox_exit event.
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
You can validate the contents of the textbox using the isnumeric function.
You will also have to look for "-" and "." using the instr function.
"Claud Balls" wrote:
> What would be the best way to check that text is a positive whole
> number? I'm thinking about putting it in the textbox_exit event.
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks