Esempio n. 1
0
        private void txtSalario_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validar v = new Validar();

            v.soloNumeros(e);
        }
Esempio n. 2
0
        private void txtApellido_KeyPress(object sender, KeyPressEventArgs e)
        {
            Validar v = new Validar();

            v.soloLetras(e);
        }