Exemple #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();
     }
 }
Exemple #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();
     }
 }
Exemple #3
0
 private void txt2Apellido_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
Exemple #4
0
 private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
Exemple #5
0
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }