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