BLOQUEAR ESPACOS NO TEXTBOX
Como bloquear a digitação de espaços no text?
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 32 Then KeyAscii = 0
End Sub
If KeyAscii = 32 Then KeyAscii = 0
End Sub
Tópico encerrado , respostas não são mais permitidas