private void btnSalvar_Click(object sender, EventArgs e) { if (VerificaCampos()) { try { Colaboradores colaboradores = new Colaboradores(); if (txtID.Text != "") { colaboradores.ID = Convert.ToInt32(txtID.Text); } colaboradores.Cod = txtCod.Text; colaboradores.Colaborador = txtColaborador.Text; colaboradores.Depto = txtDepto.Text; colaboradores.Funcao = txtFuncao.Text; colaboradores.CentroCusto = txtCentroCusto.Text; colaboradores.CPF = txtCPF.Text; if (colaboradores.ID == 0) { Colaboradores.Add(colaboradores); MessageBox.Show("Registro Salvo", "", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { Colaboradores.Update(colaboradores); MessageBox.Show("Registro Atualizado", "", MessageBoxButtons.OK, MessageBoxIcon.Information); } ExibirDados(); LimpaDados(); DesabilitaCampos(); } catch (Exception ex) { MessageBox.Show("Erro : " + ex.Message); } btnSalvar.Enabled = false; btnCancelarEdicao.Enabled = false; btnNovo.Enabled = true; btnEditar.Enabled = true; btnExcluir.Enabled = false; } else { return; } }