private void btnInserir_Click(object sender, EventArgs e) { frmSeguradora frm = new frmSeguradora(); frm.ShowDialog(); PreencherDtSeguradoras(); }
private void btnVisualizar_Click(object sender, EventArgs e) { if (dtSeguradoras.RowCount == 0) { MessageBox.Show("Não existe registro a ser visualizado!", "Sem dados", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { int id = (int)dtSeguradoras.CurrentRow.Cells[0].Value; frmSeguradora frm = new frmSeguradora(id); frm.ShowDialog(); PreencherDtSeguradoras(); } }