<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Approximatrix Forums — outtext/outtextxy]]></title>
	<link rel="self" href="http://forums.approximatrix.com/extern.php?action=feed&amp;tid=857&amp;type=atom" />
	<updated>2022-06-14T20:11:56Z</updated>
	<generator>PunBB</generator>
	<id>http://forums.approximatrix.com/viewtopic.php?id=857</id>
		<entry>
			<title type="html"><![CDATA[Re: outtext/outtextxy]]></title>
			<link rel="alternate" href="http://forums.approximatrix.com/viewtopic.php?pid=3939#p3939" />
			<content type="html"><![CDATA[<p>That&#039;s what I thought too. Ok I will investigate some more.</p>]]></content>
			<author>
				<name><![CDATA[tun_day]]></name>
				<uri>http://forums.approximatrix.com/profile.php?id=3696</uri>
			</author>
			<updated>2022-06-14T20:11:56Z</updated>
			<id>http://forums.approximatrix.com/viewtopic.php?pid=3939#p3939</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: outtext/outtextxy]]></title>
			<link rel="alternate" href="http://forums.approximatrix.com/viewtopic.php?pid=3933#p3933" />
			<content type="html"><![CDATA[<p>As long as it is displayed first, the strings are displayed, is that correct?</p><p>In other selections, what are you drawing/placing where the text is displayed for this selection?</p><p>My thinking is that there is a Windows control (checkbox, radio button, etc.) that is drawn and is interfering with subsequent drawing operations.</p>]]></content>
			<author>
				<name><![CDATA[jeff]]></name>
				<uri>http://forums.approximatrix.com/profile.php?id=2</uri>
			</author>
			<updated>2022-06-13T11:40:32Z</updated>
			<id>http://forums.approximatrix.com/viewtopic.php?pid=3933#p3933</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: outtext/outtextxy]]></title>
			<link rel="alternate" href="http://forums.approximatrix.com/viewtopic.php?pid=3929#p3929" />
			<content type="html"><![CDATA[<p>This is part of a program consisting of 4 user selections. The selections can be made in any order. This subroutine is invoked when the user makes the 2nd selection. The strings &quot;Start Angle&quot;, &quot;end Angle&quot;, &quot;Increment Angle&quot; are displayed if the user selects the second selection <strong>first</strong> before any other selection but does not display the strings otherwise.<br />I hope you understand the problem, I have trouble explaining it</p>]]></content>
			<author>
				<name><![CDATA[tun_day]]></name>
				<uri>http://forums.approximatrix.com/profile.php?id=3696</uri>
			</author>
			<updated>2022-06-11T14:39:26Z</updated>
			<id>http://forums.approximatrix.com/viewtopic.php?pid=3929#p3929</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: outtext/outtextxy]]></title>
			<link rel="alternate" href="http://forums.approximatrix.com/viewtopic.php?pid=3928#p3928" />
			<content type="html"><![CDATA[<p>Can you expand a bit on what does happen?&nbsp; When I add this subroutine to an AppGraphics test program, it seems to work.</p><p>I will say that there is a conversion occurring by default that does convert the string from UTF-8 to wide characters, but that shouldn&#039;t be an issue here since the strings are constants.</p>]]></content>
			<author>
				<name><![CDATA[jeff]]></name>
				<uri>http://forums.approximatrix.com/profile.php?id=2</uri>
			</author>
			<updated>2022-06-10T11:29:53Z</updated>
			<id>http://forums.approximatrix.com/viewtopic.php?pid=3928#p3928</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[outtext/outtextxy]]></title>
			<link rel="alternate" href="http://forums.approximatrix.com/viewtopic.php?pid=3926#p3926" />
			<content type="html"><![CDATA[<p>Can anybody see why outtexty does not always output the specified texts in this subroutine, whereas the settextboxcontents always does?</p><p>&nbsp; &nbsp; subroutine get_angles( )<br />&nbsp; &nbsp; &nbsp; &nbsp;use appgraphics&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp;implicit none<br />&nbsp; &nbsp; &nbsp; &nbsp;integer i1,iangles_box(3)</p><p>&nbsp; &nbsp; &nbsp; &nbsp;call outtextxy (xpos+50, ypos+30, &#039;Start Angle: &#039;) !Start angle label<br />&nbsp; &nbsp; &nbsp; &nbsp;iangles_box(1) = createtextbox (xpos+150, ypos+30, 50, 20)&nbsp; &nbsp; &nbsp;!Start angle text box<br />&nbsp; &nbsp; &nbsp; &nbsp;call settextboxcontents (iangles_box(1), &#039;0&#039;)<br />&nbsp; &nbsp; &nbsp; &nbsp;call outtextxy (xpos+50, ypos+60, &#039;End Angle: &#039;)&nbsp; &nbsp;!End angle label<br />&nbsp; &nbsp; &nbsp; &nbsp;iangles_box(2) = createtextbox (xpos+150, ypos+60, 50, 20)&nbsp; &nbsp; &nbsp;!End angle text box<br />&nbsp; &nbsp; &nbsp; &nbsp;call settextboxcontents (iangles_box(2), &#039;180&#039;)<br />&nbsp; &nbsp; &nbsp; &nbsp;call outtextxy (xpos+50, ypos+90, &#039;Increment: &#039;)&nbsp; &nbsp;!Increment angle label<br />&nbsp; &nbsp; &nbsp; &nbsp;iangles_box(3) = createtextbox (xpos+150, ypos+90, 50, 20)&nbsp; &nbsp; &nbsp;!Increment angle text box<br />&nbsp; &nbsp; &nbsp; &nbsp;call settextboxcontents (iangles_box(3), &#039;10&#039;)</p><p>end subroutine get_angles</p>]]></content>
			<author>
				<name><![CDATA[tun_day]]></name>
				<uri>http://forums.approximatrix.com/profile.php?id=3696</uri>
			</author>
			<updated>2022-06-09T20:21:09Z</updated>
			<id>http://forums.approximatrix.com/viewtopic.php?pid=3926#p3926</id>
		</entry>
</feed>
