コード例 #1
0
        private void textBox6_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones numero = new validaciones();

            numero.SoloNumeros(e);

            //e.Handled = char.IsWhiteSpace(e.KeyChar);
        }
コード例 #2
0
        private void passwordtxt_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones vali = new validaciones();

            vali.ParaLoginSinEspacios(e);

            e.Handled = char.IsWhiteSpace(e.KeyChar);
        }
コード例 #3
0
        private void registro_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones numero = new validaciones();

            numero.SoloNumeros(e);

            validaciones vali = new validaciones();

            vali.ParaLoginSinEspacios(e);
        }
コード例 #4
0
        private void usuariotxt_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones numero = new validaciones();

            //validaciones vali = new validaciones();
            //vali.ParaLoginSinEspacios(e);

            //numero.SoloNumeros(e);
            //e.Handled = char.IsWhiteSpace(e.KeyChar);
        }
コード例 #5
0
        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones letra = new validaciones();

            letra.SoloLetras(e);
        }
コード例 #6
0
        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones numero = new validaciones();

            numero.SoloNumeros(e);
        }
コード例 #7
0
        private void textBox6_KeyPress(object sender, KeyPressEventArgs e)
        {
            validaciones vali = new validaciones();

            vali.ParaLoginSinEspacios(e);
        }