CANCELAR TEXTO EM TEXTBOX
Pessoal, e possivel fazer com que seja permitido apenas numeros em um TextBox?
Vlw, abracos, Alex.
Vlw, abracos, Alex.
poxa...
pq não faz assim:
se vc quiser colocar enter, tab...
Falow!!
pq não faz assim:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If Not Chr(KeyAscii) Like "[0-9]" Then
KeyAscii = 0
End If
End Sub
se vc quiser colocar enter, tab...
Private Sub Text1_KeyPress(KeyAscii As Integer)
if keyascii = 13 then 'ENTER
exit sub
endif
If Not Chr(KeyAscii) Like "[0-9]" Then
KeyAscii = 0
End If
End Sub
Falow!!
Tópico encerrado , respostas não são mais permitidas