The full message is "
% IDLGRMODEL::DRAW: Total number of requested clipping planes exceeds supported limit (6)."
I've tried CATCH, !QUIET = 1, !EXCEPT = 0. None of these were able to suppress the message. My entire code is below.
FUNCTION JPMProgressBar, percentComplete, progressBar = progressBar
IF progressBar EQ !NULL THEN BEGIN
progressBar = barplot([percentComplete], WIDTH = 1, DIMENSIONS = [500, 100], MARGIN = [0.01, 0.2, 0.03, 0], /NO_TOOLBAR, $
WINDOW_TITLE = 'Program Progress', $
XRANGE = [0, 100], /HORIZONTAL, $
YRANGE = [0, 0.5])
ENDIF ELSE BEGIN
progressBar.SetData, percentComplete ; This is the line that generates the IDLGRMODEL message.
ENDELSE
return, progressBar
END
|