Accept only numbers in a text box control with one line of code MUST SEE
first, my apologies for my bad english, hehe.
this example demonstrates how to accept only numbers in a textbox control with ONE LINE OF CODE AND FAST CODE. * MUST SEE *
Rate Accept only numbers in a text box control with one line of code MUST SEE
(14(14 Vote))
on keypress event of textbox type code bellow:
KeyAscii = IIf(Not KeyAscii = 8 And Not Val((Chr(KeyAscii))) > 0, 0, KeyAscii)
Accept only numbers in a text box control with one line of code MUST SEE Comments
No comments yet — be the first to post one!
Post a Comment