private void btnEditar_Click(object sender, EventArgs e) { if (dgv.RowCount == 0) { FNotificao.AlerForm(" Nenhum Selecionado", TipoNotificacao.aviso); } else { string resultado = FNotificao.AlertConfirm("Deseja Editar os Dados do Cliente #" + dgv.CurrentRow.Cells["NomeCompleto"].Value.ToString() + "# ?", TipoNotificacao.pergunta); if (resultado == "1") { FFCliente frm = new FFCliente(AcaoNaTela.Editar); frm.txtCodigo.Text = dgv.CurrentRow.Cells["ClienteId"].Value.ToString(); frm.txtNome.Text = dgv.CurrentRow.Cells["NomeCompleto"].Value.ToString(); frm.txtTelf.Text = dgv.CurrentRow.Cells["Telf"].Value.ToString(); frm.txtEmail.Text = dgv.CurrentRow.Cells["Email"].Value.ToString(); frm.txtEndereco.Text = dgv.CurrentRow.Cells["Endereco"].Value.ToString(); if (dgv.CurrentRow.Cells["Estad"].Value.ToString() == "Activo") { frm.cbEstado.SelectedIndex = 1; } else { frm.cbEstado.SelectedIndex = 2; } DialogResult dialogResult = frm.ShowDialog(); if (dialogResult == DialogResult.Yes) { ListarCliente(); } } } }
private void btnCliente_Click(object sender, EventArgs e) { FFCliente frm = new FFCliente(AcaoNaTela.Cadastrar); DialogResult DialogResult = frm.ShowDialog(); if (DialogResult == DialogResult.Yes) { ListarCliente(); } }