CAIXA ALTA
Como faço pra ao digitar numa caixa de texto, tudo ficar em caixa alta?
Private Sub txtUsuar_KeyPress(KeyAscii As Integer)
KeyAscii = ?
End Sub
Private Sub txtUsuar_KeyPress(KeyAscii As Integer)
KeyAscii = KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
KeyAscii = KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
Tópico encerrado , respostas não são mais permitidas