I am attempting to ensure that a user enters only positive integers into a textbox on a form. I am attempting to use the function IsNumeric() as part of this check. However, when I enter 555 and then move the cursor inbetween the last and middle 5 and enter a 'd' or 'e' (i.e.- 55d5 or 55e5) the IsNumeric function returns 5500000. This also occurs with 777, 666, 555, 444, 333, and 222. Any ideas on how I could better insure the user enters only a number into the textbox. Thanks in advance.