private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.sololetras(e); if ((int)e.KeyChar == (int)Keys.Enter) { e.Handled = true; this.txt1Apellido.Focus(); } }
private void txtAlias_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.sololetras(e); if ((int)e.KeyChar == (int)Keys.Enter) { e.Handled = true; this.mtxtCedula.Focus(); } }
private void txt2Apellido_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.sololetras(e); }
private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.sololetras(e); }
private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.sololetras(e); }