Ver Mensaje Individual
  #2  
Antiguo 30-11-2005
Avatar de dec
dec dec is offline
Moderador
 
Registrado: dic 2004
Ubicación: Alcobendas, Madrid, España
Posts: 13.107
Reputación: 34
dec Tiene un aura espectaculardec Tiene un aura espectacular
Hola,

Prueba con algo así:

Código:
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
	if(e.KeyChar == (char)Keys.Enter)
	{
	  MessageBox.Show("Pulsaste la tecla ENTER");
	}
}

private void button1_Click(object sender, System.EventArgs e)
{
	textBox1_KeyPress(this, new KeyPressEventArgs((char)Keys.Enter));
}
__________________
David Esperalta
www.decsoftutils.com
Responder Con Cita