TROCAR TAB POR ENTER VB
Por favor quero ajuda para trocar (TAB por Enter vb)
E como fasso para trablhar com F4 F5 em com todos F1.
Mandar email para mim no rrodrigues@cvh.com.br
E como fasso para trablhar com F4 F5 em com todos F1.
Mandar email para mim no rrodrigues@cvh.com.br
faça assim para trocar de tab para enter :
Private Sub Form_Load()
FORNECEDOR.KeyPreview = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys ("{tab}")
KeyAscii = 0
End If
End Sub
t+
Private Sub Form_Load()
FORNECEDOR.KeyPreview = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys ("{tab}")
KeyAscii = 0
End If
End Sub
t+
e para saber o codigo da letra veja nesta pagina : http://www.vbmania.com.br/vbmdetail.php?varID=3153&TxtSearch=tecla&CmbSort=ftitulo&varPagina=1
Private Sub Form_Load()
me.KeyPreview = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys ("{tab}")
KeyAscii = 0
End If
End Sub
'trabalhar F1,F2 e demais
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
select case keycode
case 112 ' F1
Código necessário
case 113 ' F2
Código necessário
end select
End Sub
Boa Sorte
Nilson Caires
me.KeyPreview = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys ("{tab}")
KeyAscii = 0
End If
End Sub
'trabalhar F1,F2 e demais
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
select case keycode
case 112 ' F1
Código necessário
case 113 ' F2
Código necessário
end select
End Sub
Boa Sorte
Nilson Caires
tem os
if keycode = vbF1 then '.........
if keycode = vbF2 then '.........
if keycode = vbF3 then '.........
...
if keycode = vbF12 then '.........
if keycode = vbEnter then '.........
if keycode = vbF1 then '.........
if keycode = vbF2 then '.........
if keycode = vbF3 then '.........
...
if keycode = vbF12 then '.........
if keycode = vbEnter then '.........
Tópico encerrado , respostas não são mais permitidas