private void toolStripButtonAdd_Click(object sender, EventArgs e) { UseWaitCursor = true; Application.DoEvents(); try { frmDocumentsServiceReply frm = new frmDocumentsServiceReply(); frm.OpenWindow(this); } catch (Exception ex) { CommonInvoke.ErrorMessageBox(ex); } UseWaitCursor = false; }
private void toolStripButtonEdit_Click(object sender, EventArgs e) { if (enforceLawGridViewSpotCheck.SelectedRows.Count == 0) return; if (enforceLawGridViewSpotCheck.SelectedRows[0].Tag == null) return; UseWaitCursor = true; Application.DoEvents(); try { DocumentsServiceReply documentsServiceReply = enforceLawGridViewSpotCheck.SelectedRows[0].Tag as DocumentsServiceReply; frmDocumentsServiceReply frm = new frmDocumentsServiceReply(documentsServiceReply); frm.OpenWindow(this); } catch (Exception ex) { CommonInvoke.ErrorMessageBox(ex); } UseWaitCursor = false; }