<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic I assume this is a QuickWin in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934065#M88485</link>
    <description>I assume this is a QuickWin app.  You can open a separate unit with FILE='USER' and use that for your text output.  This will go to a separate window within the QuickWin MDI interface.</description>
    <pubDate>Wed, 24 Oct 2012 18:14:24 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2012-10-24T18:14:24Z</dc:date>
    <item>
      <title>How best to isolate console output from graphics?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934064#M88484</link>
      <description>&lt;P&gt;I am trying to debug a graphics app but there is a lot of&lt;STRONG&gt; console output&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;involved for the computations being done. There are also READ statements which&lt;/P&gt;
&lt;P&gt;solicit input quantities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is - the WRITE statements (or PRINT) causes a&lt;STRONG&gt; lot of scrolling,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;which&lt;STRONG&gt; destroys the graphics output&lt;/STRONG&gt;. How can I prevent that?&lt;/P&gt;
&lt;P&gt;For example can I put the WRITE statements in a separate window?&lt;/P&gt;
&lt;P&gt;Can I assign for example, assign a LOGICAL unit that would associate those WRITE statements&lt;/P&gt;
&lt;P&gt;with a different window? Or is there a way to do WRAP AROUND of WRITE statements wthout any scrolling?&lt;/P&gt;
&lt;P&gt;Ideally I would be able to scroll the WRITE outputs without affecting the graphics, but I don't know if that is possible&lt;/P&gt;
&lt;P&gt;with the current software.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, a good enhancement would be to enable opening a separate CONSOLE window from a GRAPHICS window, each&lt;/P&gt;
&lt;P&gt;one having its particular characterisitics. The CONSOLE window would allow&lt;STRONG&gt; scrolling of text.&lt;/STRONG&gt; That would solve this problem.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 17:30:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934064#M88484</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2012-10-24T17:30:16Z</dc:date>
    </item>
    <item>
      <title>I assume this is a QuickWin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934065#M88485</link>
      <description>I assume this is a QuickWin app.  You can open a separate unit with FILE='USER' and use that for your text output.  This will go to a separate window within the QuickWin MDI interface.</description>
      <pubDate>Wed, 24 Oct 2012 18:14:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934065#M88485</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-10-24T18:14:24Z</dc:date>
    </item>
    <item>
      <title>I tried that, but it was a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934066#M88486</link>
      <description>I tried that, but it was a confused mess.
when i did 
OPEN(7,file="user")
it did open a window called UNIT7, but then all the graphics stuff went into there also.
I want the graphics to go into a DIFFERENTwindow so they don't screw each other up.

So do I have to keep SWITCHING them back and forth?
That seems pretty awkward and clumsy programming.</description>
      <pubDate>Thu, 25 Oct 2012 01:29:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934066#M88486</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2012-10-25T01:29:34Z</dc:date>
    </item>
    <item>
      <title>Ah, I see I forgot something.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934067#M88487</link>
      <description>Ah, I see I forgot something. You have to call SETACTIVEQQ to unit 6 to cause the graphics to go to the default window.  I think your WRITEs to unit 7 will separate automatically.  I'm not super-familiar with this part of QuickWin so I suggest studying the documentation and looking at the various QuickWin routines available.</description>
      <pubDate>Thu, 25 Oct 2012 14:36:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934067#M88487</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-10-25T14:36:56Z</dc:date>
    </item>
    <item>
      <title>Would the regular graphics</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934068#M88488</link>
      <description>Would the regular graphics windows rather than QuickWin be easier to implement this way?
Are there any articles about this?</description>
      <pubDate>Thu, 25 Oct 2012 15:25:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934068#M88488</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2012-10-25T15:25:45Z</dc:date>
    </item>
    <item>
      <title>BTW, does the new Fortran</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934069#M88489</link>
      <description>BTW, does the new Fortran edition come with the repaired debugging environment
we talked about in a previous post?
Where it was giving exceptions, and cryptic error messages when modifying source code - - - 
I looked at the release notes, did not find any mention of it.</description>
      <pubDate>Thu, 25 Oct 2012 15:28:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934069#M88489</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2012-10-25T15:28:56Z</dc:date>
    </item>
    <item>
      <title>Many issues were fixed in the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934070#M88490</link>
      <description>Many issues were fixed in the development environment in Update 1.  Please try it.  The release notes don't tend to describe fixes - there is a separate "README" file posted with the downloads that has those.

I doubt you would find using the Windows API for graphics easier than QuickWin, and it would not allow you to do Fortran I/O to a window.</description>
      <pubDate>Thu, 25 Oct 2012 15:39:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-best-to-isolate-console-output-from-graphics/m-p/934070#M88490</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-10-25T15:39:41Z</dc:date>
    </item>
  </channel>
</rss>

