<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Approximatrix Forums — Fwin.exe   not responding]]></title>
		<link>http://forums.approximatrix.com/viewtopic.php?id=434</link>
		<atom:link href="http://forums.approximatrix.com/extern.php?action=feed&amp;tid=434&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Fwin.exe   not responding.]]></description>
		<lastBuildDate>Wed, 04 Feb 2015 23:59:27 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1885#p1885</link>
			<description><![CDATA[<p>Bob,</p><p>That&#039;s great to hear!&nbsp; If you have any other questions or problems, please don&#039;t hesitate to post!</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Wed, 04 Feb 2015 23:59:27 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1885#p1885</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1884#p1884</link>
			<description><![CDATA[<p>I may have been using the Debug. I can now report all is well.<br />Thanks for your patience with a newbie.</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Wed, 04 Feb 2015 23:42:26 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1884#p1884</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1882#p1882</link>
			<description><![CDATA[<p>Bob,</p><p>I still don&#039;t know how you&#039;d get three processes, so I&#039;ll need to look into it further.&nbsp; Out of curiosity, what directory are you working in? Also, are you clicking &quot;Launch&quot; in the menu?</p><p>The fact that there are processes that are stalled makes me think you might be clicking the &quot;Debug&quot; icon on the toolbar.&nbsp; That would explain why the program seems to start and freeze. I apologize if I&#039;m incorrect.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Tue, 03 Feb 2015 21:10:06 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1882#p1882</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1881#p1881</link>
			<description><![CDATA[<p>Jeff, Used Demo Code as follows:<br />program helloworld<br />implicit none<br />CHARACTER myChar <br />&nbsp; &nbsp; Print *, &quot;Hello World From Bob!&quot;<br />&nbsp; &nbsp; Read(*,*)myChar&nbsp; &nbsp;<br />end program helloworld<br />Placed this in&nbsp; Project Folder Test99.<br />Checked External Console and Unchecked Build before Launch.<br />---------------------------------------------------------------------------<br />I click Build Now and see<br />==============================================================================<br />Generating Makefile... Okay<br />======================================================<br />Compiling .\hello.f90<br />Generating hello.exe<br />* Complete * <br />-------------------------------------------------------------------------<br />Folder Test99&nbsp; now contains hello.exe<br />And when I click on the file from within Windows Explorer,&nbsp; it runs as expected.<br />Now will it run&nbsp; from within SF using the&nbsp; Launch!&nbsp; &nbsp;???????<br />NO and three hello.exe *32&nbsp; Processes are created<br /> I see the empty Console window with the blinking cursor and<br />I dismiss it and the three hello.exe processes are still there<br />For fun I&#039;ll now double click Hello.exe again from within Windows Explorer and<br />It runs and terminates&nbsp; as expected.<br />---------------------------------------------<br />Conclusion -&nbsp; SF Launch! does not work for me.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; And what amazes me is that Task Manager can only <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;remove two of the three processes.<br />Your thoughts ?</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Tue, 03 Feb 2015 18:35:39 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1881#p1881</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1880#p1880</link>
			<description><![CDATA[<p>Bob,</p><p>When the &quot;Project Console&quot; window opens and the cursor is just blinking, it means your program, target.exe, is actually running.&nbsp; If you expect to see some output at some point, there may be something wrong in your code.&nbsp; If you close this window using the &quot;X&quot; in the upper right, it should kill the process.</p><p>If the process is not being killed or if it is somehow spawning multiple copies of itself (which I doubt), there still may be something wrong with your code.&nbsp; You said that there were three &quot;target.exe&quot; programs in the Task Manager.&nbsp; Is there a chance that these were from earlier attempts to run your code?</p><p>When the &quot;External Console&quot; option is selected in <a href="http://simplyfortran.com/docs/full/options/launch.html">Launch Options</a>, Simply Fortran just asks Windows to execute your program in a Command Window, nothing more.&nbsp; &nbsp;When in a&nbsp; external console, Simply Fortran releases control of the executable entirely; it is no longer controlling the process.&nbsp; It is actually executing a batch file via <em>cmd.exe</em> that contains only your executable and a &quot;pause&quot; statement.&nbsp; If the process is not being killed when you close the &quot;Project Console&quot; window, it means something serious is causing your program to fail to terminate, which I find doubtful.&nbsp; I would more likely guess that the target.exe processes that you&#039;re seeing in the task manager are some sort of legacy launch attempts.</p><p>Could you either post here or send the source code for Test99.f95 to <a href="mailto:support@approximatrix.com">support@approximatrix.com</a> so I can try to replicate the problem?&nbsp; I can&#039;t explain why you&#039;d be seeing this behavior without seeing the source code.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Tue, 03 Feb 2015 02:24:46 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1880#p1880</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1879#p1879</link>
			<description><![CDATA[<p>Jeff<br />--------------------------------------------------<br />SF Build Status tab shows - <br />===============================<br />Generating Makefile... Okay<br />===============================<br />Compiling .\Test99.f95<br />Generating target.exe</p><p>* Complete *</p><p>I click Launch<br />A Project Console window is opened and empty and<br />&nbsp; shows a blinking cursor.<br />Task Manager shows 3 target.exe processes<br />The Green Launch icon is still there,<br />&nbsp; and no red square appears.<br />-----------------------------------------------------<br />I cannot delete the three target.exe&nbsp; processes.<br />I end the FWin process but still <br />I cannot delete the three target.exe&nbsp; processes.<br />Any suggestions are appreciated. <br />Bob</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Mon, 02 Feb 2015 22:42:13 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1879#p1879</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1878#p1878</link>
			<description><![CDATA[<p>Jeff ( or anyone),</p><p>Do you know of any Fortran source code or compiler directive we can put in which would cause the compiler to embed some machine code that will always end the executable whenever we close the program window?</p><p>I ask because I am often having to Ctrl-alt-delete to the task manager to kill off the process still sitting there with the name of my program executable.&nbsp; </p><p>I don&#039;t mean when running my program from within SF.&nbsp; I know I can use the big red square zapp-dot to kill orphan processes (or whatever they&#039;re called). I&#039;m talking about when running the program outside SF.</p><p>I&#039;m quite sure ther&#039;s no fault with SF.&nbsp; I&#039;m just looking for an easy way to circumvent having to write more robust programs!<br />---<br />John</p>]]></description>
			<author><![CDATA[null@example.com (JohnWasilewski)]]></author>
			<pubDate>Mon, 02 Feb 2015 21:24:02 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1878#p1878</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1877#p1877</link>
			<description><![CDATA[<p>Jeff and John,</p><p>FYI,</p><p>I&#039;ve seen this problem before when using prior versions of SF.</p><p>On more than one occasion I&#039;ve had to Ctrl-ALt-Del and stop the *.exe process before SF would compile again.</p><p>I wasn&#039;t sure if it was something I did or SF.</p><p>Frank</p>]]></description>
			<author><![CDATA[null@example.com (drfrank)]]></author>
			<pubDate>Mon, 02 Feb 2015 20:44:55 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1877#p1877</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1875#p1875</link>
			<description><![CDATA[<p>Jeff ( or anyone),</p><p>Do you know of any Fortran source code or compiler directive we can put in which would cause the compiler to embed some machine code that will always end the executable whenever we close the program window?</p><p>I ask because I am often having to Ctrl-alt-delete to the task manager to kill off the process still sitting there with the name of my program executable.&nbsp; </p><p>I don&#039;t mean when running my program from within SF.&nbsp; I know I can use the big red square zapp-dot to kill orphan processes (or whatever they&#039;re called). I&#039;m talking about when running the program outside SF.</p><p>I&#039;m quite sure ther&#039;s no fault with SF.&nbsp; I&#039;m just looking for an easy way to circumvent having to write more robust programs!<br />---<br />John</p>]]></description>
			<author><![CDATA[null@example.com (JohnWasilewski)]]></author>
			<pubDate>Mon, 02 Feb 2015 20:19:15 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1875#p1875</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1874#p1874</link>
			<description><![CDATA[<p>Bob,</p><p>Is the program currently running?&nbsp; Usually when you see a &quot;Permission Denied&quot; error during building, it means that the executable is currently running, and the compiler can&#039;t overwrite the executable.</p><p>Does your window&#039;s toolbar show a red square when you go to build your project, as shown below?</p><p><span class="postimg"><img src="http://i.imgur.com/9zvJN9M.png" alt="http://i.imgur.com/9zvJN9M.png" /></span></p><p>Before you recompile, you need to either click the red square (Terminate), select &quot;Terminate&quot; from the Build menu, or exit your program through its normal procedures.</p><p>You can see that building failed in your status window (and my example image) because the &quot;Build Status&quot; tab ends with &quot;Failed.&quot;</p><p>There are reasons why Simply Fortran does not automatically terminate programs when a build is requested, but perhaps it should change since this is a recurring problem for users.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Mon, 02 Feb 2015 18:16:16 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1874#p1874</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1873#p1873</link>
			<description><![CDATA[<p>Here is what I see<br />==============================================================================<br />Generating Makefile... Okay<br />==============================================================================<br />Compiling .\hello.f90<br />Generating hello.exe<br />c:/program files (x86)/simply fortran 2/mingw-w64/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe:<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cannot open output file hello.exe: Permission denied<br />collect2.exe: error: ld returned 1 exit status<br />Error(E42): Last command making (hello.exe) returned a bad status<br />Error(F43): Deleting (hello.exe): Permission denied<br />Error(E02): Make execution terminated</p><p>* Failed *</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Mon, 02 Feb 2015 17:17:24 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1873#p1873</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1872#p1872</link>
			<description><![CDATA[<p>Bob,</p><p>When&nbsp; you say that &quot;Launch Fails,&quot; is there an error code displayed by Simply Fortran?&nbsp; If no error is produced, it might be starting the process, but not actually generating any output.&nbsp; It is often advisable in those situations to use the &quot;External Console&quot; option in the <a href="http://simplyfortran.com/docs/full/options/launch.html">Launch Options window</a>.&nbsp; That way, if your process does seem to lock up, you can simply close the console associated with it.&nbsp; Additionally, make sure that &quot;Windows GUI&quot; is <em>not</em> checked in <a href="http://simplyfortran.com/docs/full/options/project.html">Project Options</a>.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Mon, 02 Feb 2015 14:32:28 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1872#p1872</guid>
		</item>
		<item>
			<title><![CDATA[Fwin.exe   not responding]]></title>
			<link>http://forums.approximatrix.com/viewtopic.php?pid=1871#p1871</link>
			<description><![CDATA[<p>Using Win 7 and running unregistered SF Ver 2.20 on this desktop machine</p><p>Using code that I know compiles clean,<br />Build Now works OK and no Target.exe processes are shown in TaskManager<br />Launch Fails and Task Manager now show 3 Target.exe processes.<br />One can be deleted and the other two cannot be deleted.<br />To remove the other two, I need to reboot.<br />What should I do?<br />BTW I do have my registration code and look forward to resolving this issue.<br />Also, all works well on my Laptop<br />Bob</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Sun, 01 Feb 2015 21:38:52 +0000</pubDate>
			<guid>http://forums.approximatrix.com/viewtopic.php?pid=1871#p1871</guid>
		</item>
	</channel>
</rss>
