Esempio n. 1
0
        private void btLocalizar_Click(object sender, EventArgs e)
        {
            frmConsultaContasReceber f = new frmConsultaContasReceber();
            f.ShowDialog();
            f.Dispose();

            if (f.codigo != 0)
            {
                DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);
                BLLContasReceber bll = new BLLContasReceber(cx);
                ModeloContasReceber modelo = bll.CarregaModeloContasReceber(f.codigo);
                txtCodigo.Text = modelo.CPCod.ToString();
                cbCliente.SelectedValue = modelo.CPCliente;
                txtValor.Text = Convert.ToString(modelo.CPValor);
                txtVencimento.Value = modelo.CPVencimento;
                txtPagamento.Value = modelo.CPPagamento;
                cbPago.Text = modelo.CPStatus;
                this.alteraBotoes(3);
            }
            else
            {
                this.LimpaTela();
                this.alteraBotoes(1);
            }
            f.Dispose();
        }
Esempio n. 2
0
        private void dgvDados_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            //verifica se a linha é maior que zero
            if (e.RowIndex >= 0)
            {
                this.codigo = Convert.ToInt32(dgvDados.Rows[e.RowIndex].Cells[0].Value);
                DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);
                BLLContasReceber bll = new BLLContasReceber(cx);
                ModeloContasReceber modelo = bll.CarregaModeloContasReceber(this.codigo);
                txtCodigo.Text = modelo.CPCod.ToString();
                cbCliente.Text = Convert.ToString(modelo.CPCliente);

                this.alteraBotoes(3);
            }
        }