D4rk Schn31d3r Posted May 18, 2004 Report Share Posted May 18, 2004 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 Quote Link to comment Share on other sites More sharing options...
0 Bruno Krebs Posted May 18, 2004 Report Share Posted May 18, 2004 Oque é caixa alta, é letra maiúscula?? Quote Link to comment Share on other sites More sharing options...
0 D4rk Schn31d3r Posted May 18, 2004 Author Report Share Posted May 18, 2004 Isso, isso, isso, isso. (by Chaves ) Quote Link to comment Share on other sites More sharing options...
0 Joaozava Posted May 18, 2004 Report Share Posted May 18, 2004 Tambem num entendi Quote Link to comment Share on other sites More sharing options...
0 Joaozava Posted May 18, 2004 Report Share Posted May 18, 2004 foi mal num tinha visto seu post D4rk Schn31d3r .. Quote Link to comment Share on other sites More sharing options...
0 D4rk Schn31d3r Posted May 18, 2004 Author Report Share Posted May 18, 2004 Um camarada de um outro fórum me ajudou, fica assim: Private Sub txtUsuar_KeyPress(KeyAscii As Integer) KeyAscii = Asc(UCase(Chr(KeyAscii))) End Sub Quote Link to comment Share on other sites More sharing options...
0 PiGmEu Posted May 18, 2004 Report Share Posted May 18, 2004 Edit: Postamos juntos hein D4rk Schn31d3r ehehehSe voce quiser q apos um LostFocus tudo fique em Maiuscula é assim: Private Sub txtUsuar_LostFocus() txtUsar = UCase(txtUsar) End Sub Mas se voce quiser q a cada letra digitada ela se transforme em maiuscula não muda muito coisa... é assim: Private Sub txtUsuar_Change() txtUsar.Text = UCase(Text1.Text) txtUsar.SelStart = Len(Text1) End Sub Abraços! Quote Link to comment Share on other sites More sharing options...
0 D4rk Schn31d3r Posted May 18, 2004 Author Report Share Posted May 18, 2004 Postamos no mesmo minuto, hehehe. É isso ae, as 3 opçãos funcionam. Quote Link to comment Share on other sites More sharing options...
0 William Rodrigues Posted May 25, 2004 Report Share Posted May 25, 2004 Postamos no mesmo minutoheheheheque coisa né...É isso ae, as 3 opçãos funcionamMuito bem...Gostei de ver D4rk Schn31d3r, correu atrás do que queria...é isso æ Muito bem PiGmEu Abraços,William Rodrigues Quote Link to comment Share on other sites More sharing options...
Question
D4rk Schn31d3r
Como faço pra ao digitar numa caixa de texto, tudo ficar em caixa alta?
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.