private void textboxApellidoAgregar_KeyPress(object sender, KeyPressEventArgs e)
 {
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         Registrar();
     }
     Validar.Sololetras(e);
 }
Exemplo n.º 2
0
 private void txtMarca_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Sololetras(e);
 }
 private void textboxApellidoModificar_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Sololetras(e);
 }
Exemplo n.º 4
0
 private void textBoxApellidoFac_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validar.Sololetras(e);
 }
Exemplo n.º 5
0
 private void txtDestinatario_KeyPress_1(object sender, KeyPressEventArgs e)
 {
     Validar.Sololetras(e);
 }