コード例 #1
0
ファイル: Form1.cs プロジェクト: 13r4cl1y/prueba
        private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validacion numero = new Validacion();

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

            letra.soloLetras(e);
        }