Advertisement
ASP_Volume3 Custom Controls/ Forms/ Menus #61861

Accept Only Numbers in Textbox !

Do you want to input only numbers in a textbox? and just want a few lines of code ?Well this code is for you....See it for yourself....Want to know more of my codes then email me....

AI

สรุปโดย 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.

ซอร์สโค้ด
original-source
'In the KeyPress event of a textbox
'Shall we say you have put one textbox in your form
'Here it goes
Private Sub text1_KeyPress(Keyascii as Integer)
Select case Keyascii
    
case asc(vbcr)  
      Keyascii=0 
    
    case 8,46
    case 47 to 58   
    case else
      Keyascii=0
End Select
End Sub
ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine