private void toolStripButtonAdd_Click(object sender, EventArgs e) { NewEmpDlg dlg = new NewEmpDlg(dataGridView1); dlg.sOptType = "����"; dlg.ShowDialog(); if (dlg.bDone) { resetData(); bs.MoveLast(); } }
private void toolStripButtonMod_Click(object sender, EventArgs e) { if (dataGridView1.SelectedRows.Count != 0) { NewEmpDlg dlg = new NewEmpDlg(dataGridView1); dlg.sOptType = "��"; dlg.ShowDialog(); if (dlg.bDone) { resetData(); } } else { MessageBox.Show("����ѡ��һ�����ϣ�", "��ʾ", MessageBoxButtons.OK, MessageBoxIcon.Stop); } }