private void Ualterar() { u.EnableTxt(this); u.EnableCombo(this); textBoxCodPoduto.Enabled = false; btnNovo.Enabled = false; btnExcluir.Enabled = true; btnSalvar.Enabled = true; buttonCancela.Enabled = true; }
private void Uenable() { u.EnableCombo(this); u.EnableTxt(this); u.EnableMasked(this); btnNovo.Enabled = false; btnSair.Enabled = true; btnSalvar.Enabled = false; btnInsProduto.Enabled = true; btnPProduto.Enabled = true; }
private void alterar() { buttonCancela.Enabled = true; btnNovo.Enabled = false; btnSair.Enabled = true; btnSalvar.Enabled = true; u.EnableCombo(this); u.EnableDataGrid(this); u.EnableMasked(this); u.EnableTxt(this); }
private void Ualterar() { u.EnableTxt(this); u.EnableMasked(this);; u.EnableDataGrid(this); u.EnableCombo(this); btnNovo.Enabled = false; btnExcluir.Enabled = true; btnSalvar.Enabled = true; buttonCancelareg.Enabled = true; textBoxCodFuncionario.Enabled = false; }
private void Unovo() { u.EnableTxt(this); u.EnableCheck(this); u.limparTextBoxes(this); u.CheckBoxUnchecked(this); btnNovo.Enabled = false; btnSalvar.Enabled = true; buttonSaiCadClientes.Enabled = true; buttonCancelaCadcliente.Enabled = true; txtCodigo.Enabled = false; }
private void buttonNovo_Click(object sender, EventArgs e) { limpa(); buttonSalva.Enabled = true; u.EnableTxt(this); txtCodCopf.Enabled = true; novo = true; txtCodCopf.Focus(); }
private void pedidoDataGrid_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { panelPed.Visible = false; DataGridViewRow row = this.pedidoDataGrid.Rows[e.RowIndex]; txtControle.Text = row.Cells[0].Value.ToString(); mskDtVenda.Text = row.Cells[1].Value.ToString(); txtCdesconto.Text = row.Cells[5].Value.ToString(); txtObs.Text = row.Cells[6].Value.ToString(); txtcodVendedor.Text = row.Cells[7].Value.ToString(); txtcodCliente.Text = row.Cells[8].Value.ToString(); txtSomaDesconto.Text = row.Cells[4].Value.ToString(); } string getItem = "select a.cod_produto, b.des_produto, a.ITP_QTDE, a.ITP_VALOR, a.ITP_TOTAL from ITEMPEDIDO a join produtos b on a.cod_produto = b.cod_produto where ped_codigo = " + txtControle.Text; SqlConnection con = new SqlConnection(); con.ConnectionString = utils.ConexaoDb(); SqlCommand cmd = new SqlCommand(getItem, con); DataTable dt = new DataTable(); SqlDataAdapter da = new SqlDataAdapter(cmd); da.Fill(dt); DataView dv = new DataView(dt); pedidoDataGrid.DataSource = dv; con.Close(); txtControle.Enabled = false; u.EnableCombo(this); u.EnableDataGrid(this); u.EnableMasked(this); u.EnableTxt(this); btnExcluir.Enabled = false; btnInsProduto.Enabled = false; btnNovo.Enabled = false; btnPesquisar.Enabled = true; btnPCliente.Enabled = true; btnPProduto.Enabled = true; btnPvendedor.Enabled = true; txtsomaTudo.Enabled = false; maskedTextBox1.Enabled = true; }