-2
Private Sub TNumero_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
If (KeyAscii < 44 Or KeyAscii > 57) Then
If KeyAscii <> 8 Then
If KeyAscii <> 13 Then
KeyAscii = 0
MsgBox "É permitido somente números!", vbCritical, "ERRO"
End If
End If
End If
If KeyAscii = 45 Or KeyAscii = 46 Or KeyAscii = 47 Then
KeyAscii = 0
MsgBox "É permitido somente números!", vbCritical, "ERRO"
End If
End Sub