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