コード例 #1
0
 private void textboxUsuarioEstado_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         ModificarEstado();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #2
0
 private void txtContraseña_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         guardarcontraseña();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #3
0
 private void textboxUsuarioAgregar_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         Registrar();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #4
0
 private void textboxUsuarioBusqueda_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         Buscar();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #5
0
ファイル: InicioSesion.cs プロジェクト: Frankf1203/Cristina
 private void txtUsuario_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         IniciarSesion();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #6
0
 private void txtRespuesta2_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         preguntas();
     }
     Validar.TextoConNumeros(e);
 }
コード例 #7
0
 private void txtmodelo_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.TextoConNumeros(e);
 }
コード例 #8
0
 private void textboxContraseña_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.TextoConNumeros(e);
 }
コード例 #9
0
 private void textboxUsuarioModificar_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.TextoConNumeros(e);
 }
コード例 #10
0
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.TextoConNumeros(e);
 }