boa tarde colegas , coloquei i campo para aceitar somente números, até aí ok, mas ele não entra na segunda condição.
- Código:
If Not IsNumeric(cnes) <> "" Then
MsgBox "Somente número", vbInformation, "ConsulMed"
ElseIf Len(Me.cnes) < 7 Then
MsgBox "Digito Incorreto" & vbCrLf & "O Cnes contem 7 dígitos", vbInformation, "ConsulMed"
Me.cnes = Null
Me.cnes.SetFocus
End If
- Código:
If Not IsNumeric(Chr$(KeyAscii)) Then
MsgBox "somente números", vbInformation, "ConsulMed"
KeyAscii = 0
ElseIf Len(Me.cnes) < 7 Then
MsgBox "Digito Incorreto" & vbCrLf & "O Cnes contem 7 dígitos", vbInformation, "ConsulMed"
Me.cnes = Null
Me.cnes.SetFocus
End If
End Sub