Não sei se vai te atender esse exemplo:
Select Case KeyAscii
Case 8, 48 To 57
Me.ComboBox1.MaxLength = 17
If Len(ComboBox1) = 4 Then ComboBox1 = ComboBox1 + "."
If Len(ComboBox1) = 9 Then ComboBox1 = ComboBox1 + "."
If Len(ComboBox1) = 12 Then ComboBox1 = ComboBox1 + "."
Case Else
KeyAscii = 0
End Select
Postado : 24/04/2018 12:58 pm