Advertisement
5_2007-2008 Miscellaneous #193603

Only allow numbers in textboxes

Stops letters from being typed in a textbox

AI

Tóm tắt bởi AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Mã nguồn
original-source
This will stop letters being put in a textbox named text1
private sub text1_keypress(keyascii as integer)
select case keyascil
case is < 42
case 48 To 57
case else
keyascil = 0
end select
end sub
Bình luận gốc (3)
Được khôi phục từ Wayback Machine