//LOCALIZAR POR PARCELAS EM ABERTO OU PAGAS ================================================================================================= private void btLocParcelas_Click(object sender, EventArgs e) { //caso marcado pega somente parcelas em aberto: bool PacAberto = rbParcelasEmAberto.Checked; DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLCompra bll = new BLLCompra(cx); dgvDadosCompra.DataSource = bll.LocalizarProParcelasEmAberto(PacAberto); //Formatar a DataGrid: this.AtualizaCabecalhoDGGridCompra(); }