<?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 Re: How do you launch a COM file from a FORTRAN Subroutine? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841210#M34628</link>
    <description>If you mean COM as a DCL procedure&lt;BR /&gt;&lt;BR /&gt;If the FORTRAN is running in a process with DCL then&lt;BR /&gt;LIB$SPAWN to run the COM file in a subprocess &lt;BR /&gt;</description>
    <pubDate>Thu, 10 Aug 2006 09:12:18 GMT</pubDate>
    <dc:creator>Ian Miller.</dc:creator>
    <dc:date>2006-08-10T09:12:18Z</dc:date>
    <item>
      <title>How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841209#M34627</link>
      <description>How do you launch a COM file from a FORTRAN Subroutine?</description>
      <pubDate>Thu, 10 Aug 2006 09:07:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841209#M34627</guid>
      <dc:creator>Kenneth Toler</dc:creator>
      <dc:date>2006-08-10T09:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841210#M34628</link>
      <description>If you mean COM as a DCL procedure&lt;BR /&gt;&lt;BR /&gt;If the FORTRAN is running in a process with DCL then&lt;BR /&gt;LIB$SPAWN to run the COM file in a subprocess &lt;BR /&gt;</description>
      <pubDate>Thu, 10 Aug 2006 09:12:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841210#M34628</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-08-10T09:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841211#M34629</link>
      <description>If the filname is HELP.COM what would the syntax look like?&lt;BR /&gt;&lt;BR /&gt;Ex&lt;BR /&gt;&lt;BR /&gt;       Subroutine HELP()&lt;BR /&gt;       &lt;BR /&gt;       CALL LIB$SPAWN('HELP.COM',,0,,,,,)&lt;BR /&gt;&lt;BR /&gt;Will the "0" in the call cause it to be in a NOWAIT state.  If not please advise.&lt;BR /&gt;&lt;BR /&gt;In DCL HELP.COM would look like:&lt;BR /&gt;&lt;BR /&gt;CREATE/TERMINAL EDIT/READ README.TXT&lt;BR /&gt;&lt;BR /&gt;The overall idea is that I have a FORTRAN DRIVEN MENU that I need to add a HELP SUBROUTINE to and have it launch independantly from the main menu.  And when the "EXIT" of the main menu is executed, I would like for the README.TXT TERMINAL to close.</description>
      <pubDate>Thu, 10 Aug 2006 09:23:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841211#M34629</guid>
      <dc:creator>Kenneth Toler</dc:creator>
      <dc:date>2006-08-10T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841212#M34630</link>
      <description>Kenneth, add a @ to the command line, e.g. '@HELP.COM'.&lt;BR /&gt;&lt;BR /&gt;According to your requirments, there is also the LIB$DO_COMMAND, which ends your programm and transfers control to whatever you like. At the end of your subprogramm you must reinvoke your main program.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Thu, 10 Aug 2006 10:22:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841212#M34630</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-08-10T10:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841213#M34631</link>
      <description>If you are seeking to implement a help facility within your application then consider the use of LBR$OUTPUT_HELP&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/83final/4493/4493pro_034.html#outputhelpmessage" target="_blank"&gt;http://h71000.www7.hp.com/doc/83final/4493/4493pro_034.html#outputhelpmessage&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Aug 2006 11:07:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841213#M34631</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-08-10T11:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841214#M34632</link>
      <description>&lt;BR /&gt;&amp;gt;&amp;gt; How do you launch a COM file from a FORTRAN Subroutine?&lt;BR /&gt;&lt;BR /&gt;The regular answer really is: with a call to SY$SNDJBC to 'send to job controller', that is... submit as batch job.&lt;BR /&gt;&lt;BR /&gt;However, your subsequent reply clarifies that we are talking about an interactive process here. &lt;BR /&gt;&lt;BR /&gt;The SPAWN "@HELP" will work fine and is probably the right solution.&lt;BR /&gt;However it does create two processes to do the job for one.&lt;BR /&gt;&lt;BR /&gt;You could consider calling decwindows to do it in one go. For this I would start by reading reading up on DECTERMPORT in the Decwindows Motif guide to appliation programming appendix A.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/732final/documentation/pdf/dw_guide_app_prog.pdf" target="_blank"&gt;http://h71000.www7.hp.com/doc/732final/documentation/pdf/dw_guide_app_prog.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Aug 2006 11:39:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841214#M34632</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-08-10T11:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do you launch a COM file from a FORTRAN Subroutine?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841215#M34633</link>
      <description>Kenneth,&lt;BR /&gt;&lt;BR /&gt;from your Forum Profile:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;I have assigned points to 46 of 67 responses to my questions.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe you can find some time to do some assigning?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.&lt;BR /&gt;Consider, that every poster took at least the trouble of posting for you!&lt;BR /&gt;&lt;BR /&gt;To easily find your streams with unassigned points, click your own name somewhere.&lt;BR /&gt;This will bring up your profile.&lt;BR /&gt;Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.&lt;BR /&gt;&lt;BR /&gt;Thanks on behalf of your Forum colleagues.&lt;BR /&gt;&lt;BR /&gt;PS. - nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. If you have received a posting like this before - please do not take offence - none is intended!&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Sat, 12 Aug 2006 11:37:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-do-you-launch-a-com-file-from-a-fortran-subroutine/m-p/3841215#M34633</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-08-12T11:37:38Z</dc:date>
    </item>
  </channel>
</rss>

