|
|
|
|
|
Dicas
|
|
Visual Basic (ActiveX/Controles/DLL)
|
|
|
Título da Dica: Tecla Enter funcionando como Tab no Form
|
|
|
|
Postada em 14/9/2007 por Dione
dionevelos@yahoo.com.br
Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyReturn Then SendKeys "{tab}" End If '*é preciso alterar na barra de propriedades o menu KeyPress, para true
|
|
|
|
|