Exemplo n.º 1
0
 private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         e.Handled = true;
         this.txt1Apellido.Focus();
     }
 }
Exemplo n.º 2
0
 private void txtAlias_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         e.Handled = true;
         this.mtxtCedula.Focus();
     }
 }
Exemplo n.º 3
0
 private void txt2Apellido_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
Exemplo n.º 4
0
 private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
Exemplo n.º 5
0
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }