IF KEYASCII VBKEYTAB THEN KEYASCII 0
if keyAscii = vbKeyTab Then KeyAscii = 0 esse codigo roda no vb6 quero fazer ele funcionar no vb.net , quero bloquear a tecla tab, quando o cara clicar o tab nada acontecer.
Olha se assim funciona:
[ô]Deve ser colocado no KeyPress
if e.KeyChar = Convert.ToChar(Keys.Tab)then
e.Handled = True
end if
[ô]Deve ser colocado no KeyPress
if e.KeyChar = Convert.ToChar(Keys.Tab)then
e.Handled = True
end if
Tópico encerrado , respostas não são mais permitidas