<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Approximatrix Forums — dlgrequesttext problem]]></title>
		<link>https://forums.approximatrix.com/viewtopic.php?id=536</link>
		<atom:link href="https://forums.approximatrix.com/extern.php?action=feed&amp;tid=536&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in dlgrequesttext problem.]]></description>
		<lastBuildDate>Tue, 22 Mar 2016 18:51:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2437#p2437</link>
			<description><![CDATA[<p>Just wanted to post an update - I have <em>dlgrequesttext</em> working again under XP.&nbsp; It seemed to be related to issues with AppGraphics&#039; embedded Win32 resources conflicting with the default icon/manifest resources that Simply Fortran was adding to the compiled program.&nbsp; I&#039;m not sure why the conflict only seemed to be occurring on XP, but everything is working now.&nbsp; The fix will appear in version 2.27, scheduled to be released in the next few weeks.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Tue, 22 Mar 2016 18:51:55 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2437#p2437</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2418#p2418</link>
			<description><![CDATA[<p>Good deal. Cannot stay with XP forever but I will long as possible.</p>]]></description>
			<author><![CDATA[null@example.com (tklfranklin)]]></author>
			<pubDate>Wed, 09 Mar 2016 14:41:14 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2418#p2418</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2416#p2416</link>
			<description><![CDATA[<p>The <em>dlgrequesttext</em> function does indeed fail on XP.&nbsp; I&#039;ll have to do some digging, but I&#039;ve at least been able to replicate the issue.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Sat, 05 Mar 2016 17:51:32 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2416#p2416</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2412#p2412</link>
			<description><![CDATA[<p>Ran clean for me on Win 10 64bit&nbsp; &nbsp;Bob</p>]]></description>
			<author><![CDATA[null@example.com (Bob)]]></author>
			<pubDate>Fri, 04 Mar 2016 17:11:06 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2412#p2412</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2404#p2404</link>
			<description><![CDATA[<p>XP, 32 bit</p>]]></description>
			<author><![CDATA[null@example.com (tklfranklin)]]></author>
			<pubDate>Tue, 01 Mar 2016 03:24:05 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2404#p2404</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2403#p2403</link>
			<description><![CDATA[<p>There are no settings.&nbsp; What version of Windows are you using, and is it 32- or 64-bit?&nbsp; I&#039;ll try to replicate the issue.</p><p>The text request dialog, like a few of the others, are not &quot;native, pre-packaged Windows dialogs.&quot;&nbsp; There is a resource file compiled into AppGraphics that implements these dialogs.&nbsp; They are substantially more complicated than, for example, a simple message box.</p>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Tue, 01 Mar 2016 01:24:20 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2403#p2403</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2402#p2402</link>
			<description><![CDATA[<p>Jeff,</p><p>i ran your routine in a project ( all by itself) and it did same as my code been doing. That is : it flies thru the call to dlgrequesttext without pausing and displaying the dialog/request. No execution error. Seems to just ignore - on my machine&nbsp; (2.26 installed couple days back). Wonder if there&#039;s a setting ....???</p>]]></description>
			<author><![CDATA[null@example.com (tklfranklin)]]></author>
			<pubDate>Mon, 29 Feb 2016 22:02:54 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2402#p2402</guid>
		</item>
		<item>
			<title><![CDATA[Re: dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2401#p2401</link>
			<description><![CDATA[<p>Do you have any more context for this code?&nbsp; I just tried a trivial example, and it seems to work:</p><div class="codebox"><pre><code>program request
use appgraphics
implicit none

    character(50)::text

    text = &quot; &quot;

    if(dlgrequesttext(text, &quot;Request&quot;, &quot;Enter Text&quot;)) then
        Print *, text
    else
        Print *, &quot;Cancelled&quot;
    end if

end program request</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (jeff)]]></author>
			<pubDate>Mon, 29 Feb 2016 15:40:10 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2401#p2401</guid>
		</item>
		<item>
			<title><![CDATA[dlgrequesttext problem]]></title>
			<link>https://forums.approximatrix.com/viewtopic.php?pid=2400#p2400</link>
			<description><![CDATA[<p>used this fn reference per document</p><p>rtn = dlgrequesttext(dr_inp, ttl, lbl)<br />rtn -&nbsp; logical<br />dr_- inp, ttl, lbl character(len=1024)</p><p>nothing happening for me.&nbsp; Most of the other dlg&#039;s did work for me</p>]]></description>
			<author><![CDATA[null@example.com (tklfranklin)]]></author>
			<pubDate>Sun, 28 Feb 2016 18:31:14 +0000</pubDate>
			<guid>https://forums.approximatrix.com/viewtopic.php?pid=2400#p2400</guid>
		</item>
	</channel>
</rss>
