TECLADO
COMO FAÇO PARA Q MEU PROGRAMA SÓ“ DIGITE COM MAIÃÅ¡SCULAS?
fácil...
tem de utilizar um código no evento Keypress de seu controle:
Ex:
'--- MaÃusculas
Private Sub txtNome_Keypress(KeyAscii as integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
'--- Minúsculas
Private Sub txtNome_Keypress(KeyAscii as integer)
KeyAscii = Asc(LCase(Chr(KeyAscii)))
End Sub
Feito amigo!
Abraços,
Giovanni B. Machado
tem de utilizar um código no evento Keypress de seu controle:
Ex:
'--- MaÃusculas
Private Sub txtNome_Keypress(KeyAscii as integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
'--- Minúsculas
Private Sub txtNome_Keypress(KeyAscii as integer)
KeyAscii = Asc(LCase(Chr(KeyAscii)))
End Sub
Feito amigo!
Abraços,
Giovanni B. Machado
Tópico encerrado , respostas não são mais permitidas