Beispiel #1
0
        private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validacion numero = new Validacion();

            numero.soloNumeros(e);
        }
Beispiel #2
0
        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validacion letra = new Validacion();

            letra.soloLetras(e);
        }