TIRAR O BIP
ae galera, como eu faço para tirar o bip, por exemplo, quando passo de uma caixa de texto para outra.
obrigado.
obrigado.
Se você diz do bip no keypress, tenta colocar keyascii = 0. Isso deve resolver.
Você usa o evento KeyPress e não o KeyDown. Dai você faz o seguinte:
Private Sub Txt1_KeyPress(KeyAscii As Integer)
if keyascii = 13 then 'Enter
keyascii = 0
sendkeys "{Tab}"
endif
End Sub
faz assim
cria uma funcao
[/c]
dae no seu text e nos outros
[/c]
cria uma funcao
[c]public function Enter(Key as integer) as integer
if key =13 then
sendkeys "{tab}"
enter = 0
else
enter =key
end if
end Function
[/c]
dae no seu text e nos outros
[c]Private Sub Txt1_KeyPress(KeyAscii As Integer)
keyAscii = enter(keyascii)
end Sub
[/c]
Tópico encerrado , respostas não são mais permitidas