envio de la tecla "tab" cuando se teclee "enter"

06/02/2007 - 04:14 por pez | Informe spam
Hola:

Alguien me puede decir como enviar tab cuando se teclle enter, esto es
para que el foco me pase de un textbox a un botton.

gracias
 

Leer las respuestas

#1 RobWare.Ruiz
06/02/2007 - 04:48 | Informe spam
private void txtCod_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
e.Handled = true;
ProcessTabKey(true);
}

}


"pez" wrote:

Hola:

Alguien me puede decir como enviar tab cuando se teclle enter, esto es
para que el foco me pase de un textbox a un botton.

gracias


Preguntas similares