public void OnAuditLinkClick(object sender, DataEventArgs <LinkLabel> eventArgs) { try { this.Cursor = Cursors.WaitCursor; TerraScanCommon.ShowAuditReport("NextNumID", this.NextNumberIDTextBox.Text); } catch (Exception ex) { ExceptionManager.ManageException(ex, ExceptionManager.ActionType.CloseCurrentForm, this.ParentForm); } finally { this.Cursor = Cursors.Default; } }