<?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 : PDF-&#070;orm Landscape</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 : PDF-&#070;orm Landscape]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 17 May 2026 13:58:25 +0000</pubDate>
  <lastBuildDate>Sun, 14 May 2006 00:56:37 +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=404</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[PDF-&#070;orm Landscape : There are a few hacks here, including...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1817.html#1817</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 14 May 06 at 12:56AM<br /><br />There are a few hacks here, including formtool, mostly having to do with PDF:<br /><br />http://www.geocities.com/sea_sbs/files/<br /><br />]]>
   </description>
   <pubDate>Sun, 14 May 2006 00:56:37 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1817.html#1817</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Where can I find the &amp;#034;formtools&amp;#034;...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1816.html#1816</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=114">FKirch</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 13 May 06 at 5:04AM<br /><br />Where can I find the "formtools" of chicks?]]>
   </description>
   <pubDate>Sat, 13 May 2006 05:04:02 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1816.html#1816</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Thanks Chicks  I will try it.  best...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1772.html#1772</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=110">hkoestner</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 03 May 06 at 6:24PM<br /><br />Thanks Chicks<br /><br />I will try it.<br /><br />best regards]]>
   </description>
   <pubDate>Wed, 03 May 2006 18:24:00 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1772.html#1772</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Well, I haven&amp;#039;t had time...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1771.html#1771</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 03 May 06 at 1:35PM<br /><br />Well, I haven't had time to play with this too much, but here's a start:<br /><br />In the RenderPage function, check the page rotation (I'm only checking non-zero here, but would need to be more sophisticated), and set pageWidth and pageHeight accordingly:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;IF iSEDPageRotation() &lt;&gt; 0 THEN<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pageWidth = iSEDGetPageBox(2,3)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pageHeight = iSEDGetPageBox(2,2)<br />&nbsp;&nbsp;&nbsp;&nbsp;ELSE<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pageWidth = iSEDGetPageBox(2,2)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pageHeight = iSEDGetPageBox(2,3)<br />&nbsp;&nbsp;&nbsp;&nbsp;END IF<br /><br />Also in RenderPage, check the form fields for rotation, and position accordingly:<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;scale =  iResolution / 72<br />&nbsp;&nbsp;&nbsp;&nbsp;FOR i = 1 TO fieldCount<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IF Fields(i).page = iCurPage THEN<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;id = Fields(i).fldID<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IF iSedGetFormFieldRotation(id) &lt;&gt; 0 THEN<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).x = (iSEDGetFormFieldBound(id, 0) - iSEDGetPageBox(2,0) ) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).y = (pageHeight - iSEDGetFormFieldBound(id, 1) + iSEDGetPageBox(2,5)) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).w = iSEDGetFormFieldBound(id, 3) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).h = iSEDGetFormFieldBound(id, 2) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ELSE<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).x = (iSEDGetFormFieldBound(id, 0) - iSEDGetPageBox(2,0) ) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).y = (pageHeight - iSEDGetFormFieldBound(id, 1) + iSEDGetPageBox(2,5)) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).w = iSEDGetFormFieldBound(id, 2) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Fields(i).h = iSEDGetFormFieldBound(id, 3) * scale<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;END IF<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END IF<br />&nbsp;&nbsp;&nbsp;&nbsp;NEXT i<br /><br />This still doesn't position the field correctly, you'll need to play with that a bit, but it does at least paint it in the correct direction.<br />]]>
   </description>
   <pubDate>Wed, 03 May 2006 13:35:37 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1771.html#1771</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Hi chicks,  any idea? - The example...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1770.html#1770</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=110">hkoestner</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 03 May 06 at 4:15AM<br /><br />Hi chicks,<br /><br />any idea? - The example was created with Acrobat 6<br /><br />best regards]]>
   </description>
   <pubDate>Wed, 03 May 2006 04:15:10 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1770.html#1770</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Hi chicks,  no problem, you can...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1757.html#1757</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=110">hkoestner</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 28 Apr 06 at 5:51PM<br /><br />Hi chicks,<br /><br />no problem, you can find it here:<br /><br />http://www.formsoft.de/quer.pdf<br /><br />best regards]]>
   </description>
   <pubDate>Fri, 28 Apr 2006 17:51:58 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1757.html#1757</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : Can you post an example PDF with...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1755.html#1755</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 28 Apr 06 at 5:15PM<br /><br />Can you post an example PDF with the issue somewhere?  ]]>
   </description>
   <pubDate>Fri, 28 Apr 2006 17:15:02 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1755.html#1755</guid>
  </item> 
  <item>
   <title><![CDATA[PDF-&#070;orm Landscape : I am working on a solution concerning...]]></title>
   <link>http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1754.html#1754</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=110">hkoestner</a><br /><strong>Subject:</strong> 404<br /><strong>Posted:</strong> 28 Apr 06 at 2:29PM<br /><br />I am working on a solution concerning the presentation of PDF-forms in a delphi form. The solution is based on the "FormTool" of "Chicks". <br />With forms in the landscape format the problem occurs that the fields are aligned vertically instead of horizontally.<br /><br />The problem can also be reproduced with "FormTool".<br /><br />Does anybody have a solution for this problem?]]>
   </description>
   <pubDate>Fri, 28 Apr 2006 14:29:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/pdfform-landscape_topic404_post1754.html#1754</guid>
  </item> 
 </channel>
</rss>