|
|
|
|
|
Dicas
|
|
Visual Basic (Controles Intrínsecos (Padrão))
|
|
|
Título da Dica: Máscara de data no TextBox
|
|
|
|
Postada em 27/6/2007 por JOM
ponha o seguinte código em change da textbox e na propriedade maxlength = 10
If Len(Text1) = 2 Then Text1 = Text1 + "/" Text1.SelStart = 4 End If If Len(Text1) = 5 Then Text1 = Text1 + "/" Text1.SelStart = 7 End If
|
|
|
|
|