Postada em 27/6/2007 por JOM Private Sub Text1_Change() If Len(Text1) = 3 Then Text1 = Text1 + "." Text1.SelStart = 5 End If If Len(Text1) = 7 Then Text1 = Text1 + "." Text1.SelStart = 9 End If If Len(Text1) = 11 Then Text1 = Text1 + "-" Text1.SelStart = 14 End If