le format numero de téléphone tel que je veux l'exploter dans mon fichier 24177000000bonjour
c'est quoi le format ?
Merci Patrick,re
BEN dans l’événement exit du textbox
with textbox1
if .value<>"" and len(.value)<.maxlength then cancel=true
end with
c'est pas plus compliqué que ça
soit il vide ce qui l'a commencer a taper pour pouvoir sortir soit il tape le maxlength
sinon tu envoie tes utilisateurs traire les chevres
![]()
Eureka!!!!re
bonsoir
Private Sub Txt_Phone_Exit(ByVal Cancel As MSForms.ReturnBoolean)
With Txt_Phone
If .Value <> "" And Len(.Value) < .MaxLength Then
Cancel = True
MsgBox "Veuillez saisir un numero de téléphone valide"
end if
End With
End Sub