private void txtidentificacion_KeyPress(object sender, KeyPressEventArgs e)
 {
     v.Solo_Numeros(e);
 }
Example #2
0
 private void txtdni_KeyPress(object sender, KeyPressEventArgs e)
 {
     v.Solo_Numeros(e);
 }
Example #3
0
        private void txtusuario_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validacion_texbox v = new Validacion_texbox();

            v.Solo_Numeros(e);
        }
Example #4
0
        private void txtbuscadorCliente_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validacion_texbox v = new Validacion_texbox();

            v.Solo_Numeros(e);
        }
 private void txtbuscarClient_KeyPress(object sender, KeyPressEventArgs e)
 {
     v.Solo_Numeros(e);
 }
Example #6
0
 private void txtnumpedido_KeyPress(object sender, KeyPressEventArgs e)
 {
     va.Solo_Numeros(e);
 }