VALIDANDO NUMERO
Desculpe pessoal não me lembor como faço para que uma textbox só aceite numeros inteiros
ClaJMCardoso
Utilize a rotina abaixo:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii 48 Or KeyAscii 58 Then
KeyAscii = 0
End If
End Sub
Deve resolver. Final de Semana
Utilize a rotina abaixo:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii 48 Or KeyAscii 58 Then
KeyAscii = 0
End If
End Sub
Deve resolver. Final de Semana
Tópico encerrado , respostas não são mais permitidas