<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : Page fills in reverse order</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : I need help - I can help : Page fills in reverse order]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 19:23:26 +0000</pubDate>
  <lastBuildDate>Thu, 02 Jul 2009 18:07:06 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=1128</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[Page fills in reverse order : That did the trick.  Thanks, Dan...]]></title>
   <link>http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5241.html#5241</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1104">danz26</a><br /><strong>Subject:</strong> 1128<br /><strong>Posted:</strong> 02 Jul 09 at 6:07PM<br /><br />That did the trick.<DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>Dan</DIV>]]>
   </description>
   <pubDate>Thu, 02 Jul 2009 18:07:06 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5241.html#5241</guid>
  </item> 
  <item>
   <title><![CDATA[Page fills in reverse order : Hi Danz!  In pdf-standard the...]]></title>
   <link>http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5236.html#5236</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1128<br /><strong>Posted:</strong> 02 Jul 09 at 6:10AM<br /><br />Hi Danz!<DIV>&nbsp;</DIV><DIV>In pdf-standard the bottom of a page is the low one (it starts from below). The top of the page is high. If you want to change this QuickPDF offers the function SetOrigin.</DIV><DIV>&nbsp;</DIV><DIV>SetOrigin(0) is standard and means "bottom, left".</DIV><DIV>1 = top, left</DIV><DIV>2 = top, right</DIV><DIV>3 = bottom, right</DIV><DIV>&nbsp;</DIV><DIV>Cheers and welcome here,</DIV><DIV>Ingo</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 02 Jul 2009 06:10:11 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5236.html#5236</guid>
  </item> 
  <item>
   <title><![CDATA[Page fills in reverse order : I am looping through the ascii...]]></title>
   <link>http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5233.html#5233</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1104">danz26</a><br /><strong>Subject:</strong> 1128<br /><strong>Posted:</strong> 02 Jul 09 at 12:34AM<br /><br />I am looping through the ascii file and adding each line of it to a pdf file using QuickPDFDrawText.&nbsp; However it takes line 1 of the ascii file and starts at the bottom of the page and fills the page up.&nbsp; So on each page the header is on the bottom and page number is on the top.&nbsp; If I select the text and do a copy and paste of say page 1 and paste it into word.&nbsp; It flips it around correctly.&nbsp; Here is the code (sorry it is clarion, but hopefully you can follow it.)<DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; InstanceID = QuickPDFCreateLibrary();<BR>&nbsp;&nbsp;&nbsp; if (QuickPDFUnlockKey(InstanceID, regkey) = 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; do buildreport<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a# = QuickPDFSaveToFile(InstanceID, pdffilename)<BR>&nbsp;&nbsp;&nbsp; .<BR>&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFReleaseLibrary(InstanceID)<BR></DIV><DIV>&nbsp;</DIV><DIV>buildreport routine<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFAddStandardFont(InstanceID, 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFSelectFont(InstanceID, 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFSetTextSize(InstanceID, 12)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFSetTextAlign(InstanceID, 4)<BR>&nbsp;&nbsp;&nbsp;&nbsp; p# = 1<BR>&nbsp;&nbsp;&nbsp;&nbsp; pg# = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp; ypos = 100<BR>&nbsp;&nbsp;&nbsp;&nbsp; AsciiName&nbsp; ='ucs-report.out'<BR>&nbsp;&nbsp;&nbsp;&nbsp; open(asciifile)<BR>&nbsp;&nbsp;&nbsp;&nbsp; set(asciifile)<BR>&nbsp;&nbsp;&nbsp;&nbsp; loop<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; next(asciifile)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if error() then break.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if p# &gt; 64<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p# = 0<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ypos = 100<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFNewPage(InstanceID)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QuickPDFSetTextSize(InstanceID, 12)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pg# += 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p# += 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mytext = mem:asciiline<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a# = QuickPDFDrawText(InstanceID, 10, ypos, mytext)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ypos += 10<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp; .<BR>&nbsp;&nbsp;&nbsp; close(asciifile)<BR></DIV>]]>
   </description>
   <pubDate>Thu, 02 Jul 2009 00:34:56 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/page-fills-in-reverse-order_topic1128_post5233.html#5233</guid>
  </item> 
 </channel>
</rss>