private void AlterarClientes() { if (dgvClientes.RowCount == 0) { MessageBox.Show("Selecione algum cliente"); return; } if (dgvClientes.RowCount > 0) { try { VariaveisStaticas.codigoclienteStatico = dgvClientes.CurrentRow.Cells[0].Value.ToString().Trim(); CadastroClientes formalterar = new CadastroClientes(); formalterar.GetDadosAlterar(); formalterar.ShowDialog(); if (VariaveisStaticas.entrouNoClientePelaProspeccao == true) { this.Close(); } } catch (Exception ex) { MessageBox.Show("Aconteceu algum erro \n" + ex.Message, "Erro teste"); // throw new Exception (ex.Message); } } }
private void button1_Click(object sender, EventArgs e) { CadastroClientes cadastro = new CadastroClientes(); cadastro.IncluiDados(); cadastro.ShowDialog(); if (VariaveisStaticas.entrouNoClientePelaProspeccao == true) { this.Close(); } }