Ok I have it set that only numbers will work in the text box using the code
If keyascii < 48 or keyascii > 57 then
keyascii = 0
Beep
End if
That works fine, however I want them to be able to use the "Backspace", how can I do that while still having this code or a code that prevents All those keyascii's listed, except the backspace.




Reply With Quote