Exemplo n.º 1
0
 private void button3_Click(object sender, EventArgs e)
 {
     this.b = new Baixas();
     this.b.DataBaixa = DateTime.Now;
        Conn.db.Baixas.Add(this.b);
        Conn.db.SaveChanges();
        popularCampos();
        desbloquearForm();
 }
Exemplo n.º 2
0
 private void bloquearForm()
 {
     limparForm();
     tbDescricao.Enabled = false;
     tbNomeProduto.Enabled = false;
     tbQntd.Enabled = false;
     tbDepartamento.Enabled = false;
     dgvTabela.Enabled = false;
     bAdicionarProduto.Enabled = false;
     bBuscarProduto.Enabled = false;
     bExcluir.Enabled = false;
     p = null;
     b = null;
 }
Exemplo n.º 3
0
 private void button6_Click(object sender, EventArgs e)
 {
     BuscaBaixaForm bef = new BuscaBaixaForm();
     this.b = bef.iniciarForm();
     if (this.b != null)
     {
         popularCampos();
         popularTabela();
         desbloquearForm();
     }
     else
     {
         limparForm();
         bloquearForm();
     }
 }
Exemplo n.º 4
0
 private void dgvTabela_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     int id =
         Convert.ToInt32(dgvTabela.Rows[dgvTabela.CurrentRow.Index].Cells[0].Value.ToString());
     var bai = (from en in Conn.db.Baixas
                 where en.idBaixas == id
                 select en).First();
     this.b = bai;
     Dispose();
 }