//Validar somente numero na porta private void txtPorta_KeyPress(object sender, KeyPressEventArgs e) { Validar valida = new Validar(); valida.valCampoNumero(e, txtPorta); }
//KeyPress TextBox Valor private void txtValorTitulo_KeyPress(object sender, KeyPressEventArgs e) { Validar valida = new Validar(); valida.valCampoNumero(e, txtValorTitulo); }