X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 26 Apr 2015 11:09 PM by  anon
Excessive Messages When Building Project
 2 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:32
New Member


--
26 Apr 2015 11:09 PM
    When I am building an IDL project, a very long list of information is displayed on console like following, I guess at least a few hundreds of lines. How can I turn off these messages. I cannot find any option on this from the Project Properties dialog. ... % SAVE: Saved function: _IDLITVISUALIZATION::ISISOTROPIC. % SAVE: Saved function: _IDLITVISUALIZATION::ISMANIPULATORTARGET. % SAVE: Saved function: _IDLITVISUALIZATION::ISSELECTED. % SAVE: Saved function: _IDLITVISUALIZATION::MATCHESTYPES. % SAVE: Saved function: _IDLITVISUALIZATION::REQUESTSAXES. % SAVE: Saved function: _IDLITVISUALIZATION::SEEKPIXELATEDVISUALIZATION. % SAVE: Saved function: _IDLITVISUALIZATION::_CHILDRENSELECTED. % SAVE: Saved function: _IDLITVISUALIZATION::_GETLAYER. % SAVE: Saved function: _IDLITVISUALIZATION::_GETWINDOWANDVIEWG. % SAVE: Saved function: _IDLITVISVERTEX::COUNTVERTEX. % SAVE: Saved function: _IDLITVISVERTEX::GETVERTEX. % SAVE: Saved function: _IDLITVISVERTEX::INIT. % SAVE: Saved function: _IDLITVISVERTEX::_CHECKVERTEX. % SAVE: Saved function: _IDLITWDEW_SELECTWRITER. % SAVE: Saved function: _IDLITWDEW_VARIABLE. % SAVE: Saved function: _IDLITWDIW_COMMANDLINE. % SAVE: Saved function: _IDLITWDIW_FILESEL. % SAVE: Saved function: _IGETID_ISEQUAL. % SAVE: Saved function: _IGETREADERS_READXML. % SAVE: Saved function: _IOPEN_CALL_FUNCTION. % SAVE: Saved function: _IOPEN_FINDMATCHINGREADER. ... Thanks for any help.

    Deleted User



    New Member


    Posts:81
    New Member


    --
    28 Apr 2015 01:38 PM
    In the IDL Workbench, right click on your project folder in your Project Explorer view to open the Project Properties dialog. Next, select "IDL Build Properties" in the left pane of the project properties dialog. Then on the right side of the dialog, click on the "Create build script in editor..." button. This will create a draft editor document with IDL commands equivalent to what is executed when you build that particular project. After dismissing the project properties dialog, notice in the build script that the "SAVE..." command includes the /VERBOSE keyword setting, for example: SAVE, /ROUTINES, FILENAME='C:\Users\joeuser\IDLWorkspace84\myapp\myapp.sav', /VERBOSE One approach to turning off the verbose SAVE when you build your project would be to do the following: 1.) Copy the SAVE command but without the ", /VERBOSE" part. 2.) Open the properties dialog for your project again and open the IDL Build Properties section. 3.) Uncheck the "Create a save file" checkbox. 4.) Paste the copied SAVE command into the field titled "IDL post-process command to execute after compiling:", for example: SAVE, /ROUTINES, FILENAME='C:\Users\joeuser\IDLWorkspace84\myapp\myapp.sav' 5.) Click on "Apply", and then "OK". 6.) Build your project with the modified build properties. At this point, the verbose SAVE command output should no longer be displayed. I hope this can be helpful. Kind regards

    Deleted User



    New Member


    Posts:32
    New Member


    --
    30 Apr 2015 01:01 AM
    This solved my problem. Thanks, Jim.
    You are not authorized to post a reply.