private void rbtSeparar_CheckedChanged(object sender, EventArgs e) { btnCancel_Click(sender, e); DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLVenda bllvenda = new BLLVenda(cx); dgvDados.DataSource = bllvenda.LocalizarSepara(txtPequisa.Text.ToString()); this.AtualizaCabecalhoDGCompra(); }
private void frmSeparacaoPedido_Load(object sender, EventArgs e) { WindowState = FormWindowState.Maximized; DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLVenda bllvenda = new BLLVenda(cx); dgvDados.DataSource = bllvenda.LocalizarSepara(txtPequisa.Text.ToString()); this.AtualizaCabecalhoDGCompra(); BLLEquipe blleq = new BLLEquipe(cx); txtNomeEquipe.DataSource = blleq.Localizar(""); txtNomeEquipe.DisplayMember = "equi_nome"; txtNomeEquipe.ValueMember = "equi_nome"; }
private void txtPequisa_KeyDown(object sender, KeyEventArgs e) { if (rbtSeparar.Checked == true) { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLVenda bllvenda = new BLLVenda(cx); dgvDados.DataSource = bllvenda.LocalizarSepara(txtPequisa.Text.ToString()); this.AtualizaCabecalhoDGCompra(); } if (rbtSeparados.Checked == true) { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLVenda bllvenda = new BLLVenda(cx); dgvDados.DataSource = bllvenda.LocalizarSeparados(txtPequisa.Text.ToString()); this.AtualizaCabecalhoDGSeparados(); } }
public void AtualizaCabecalhoDGCompra() { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLVenda bllvenda = new BLLVenda(cx); dgvDados.DataSource = bllvenda.LocalizarSepara(txtPequisa.Text.ToString()); //dgvDados.Columns[1].Width = 700; dgvDados.RowHeadersVisible = false; dgvDados.ReadOnly = true; dgvDados.Columns[0].HeaderText = "Código"; dgvDados.Columns[1].HeaderText = "Nome Cliente"; dgvDados.Columns[2].HeaderText = "Total"; dgvDados.Columns[2].DefaultCellStyle.Format = "N2"; dgvDados.Columns[3].HeaderText = "Data "; dgvDados.Columns[4].HeaderText = "Nome da Equipe"; dgvDados.Columns[1].Width = 230; dgvDados.Columns[0].Width = 80; }