|
|
|
|
|
Dicas
|
|
Visual Basic (ActiveX/Controles/DLL)
|
|
|
Título da Dica: Para só Aceitar Letras.
|
|
|
|
Postada em 13/3/2007 por Edinei
neisjb@hotmail.com
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode >= 65 And KeyCode <= 90 Or KeyCode = 8 Or KeyCode = 32 Then Text1.Locked = False Else Text1.Locked = True End If End Sub
|
|
|
|
|