// 15052008 AJM - Updating Render notification window - This could be improved to show current action in the future private void showWait() { try { if (System.Environment.OSVersion.Platform != PlatformID.Unix) { DialogWait wait = new DialogWait(this, StopWaitDialog); wait.ShowDialog(); } } catch (ObjectDisposedException ode) { // Just let it go } catch (Exception ex) { MessageBox.Show(ex.Message, Strings.RdlViewer_ShowD_Error, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
// 15052008 AJM - Updating Render notification window - This could be improved to show current action in the future private void showWait() { try { DialogWait wait = new DialogWait(this, StopWaitDialog); wait.ShowDialog(); } catch (ObjectDisposedException ode) { // Just let it go } catch (Exception ex) { MessageBox.Show(ex.Message, Strings.RdlViewer_ShowD_Error, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
// 15052008 AJM - Updating Render notification window - This could be improved to show current action in the future private void showWait() { DialogWait wait = new DialogWait(this); wait.ShowDialog(); }