<?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 : Error &#111;n CapturePageEx</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 : Error &#111;n CapturePageEx]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 07 May 2026 18:51:12 +0000</pubDate>
  <lastBuildDate>Sun, 13 Nov 2005 15:01:22 +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=177</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[Error &#111;n CapturePageEx :   PhilG wrote:I&amp;#039;m still...]]></title>
   <link>http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post517.html#517</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 177<br /><strong>Posted:</strong> 13 Nov 05 at 3:01PM<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by PhilG" alt="Originally posted by PhilG" style="vertical-align: text-bottom;" /> <strong>PhilG wrote:</strong><br /><br />I'm still not sure why this error happens, but I found that it goes away if I save and reload the document</td></tr></table><br /><br />Hi!<br />I've made the same experiences. Save and reload and few errors will dissapear... Not a solution but a workaround ;-)<br />Seems that sometimes the temporary created pdf looks inside a bit different as a saved file.<br /><span style="font-size:10px"><br /><br />Edited by Ingo</span>]]>
   </description>
   <pubDate>Sun, 13 Nov 2005 15:01:22 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post517.html#517</guid>
  </item> 
  <item>
   <title><![CDATA[Error &#111;n CapturePageEx : I&amp;#039;m still not sure why this...]]></title>
   <link>http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post515.html#515</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=142">PhilG</a><br /><strong>Subject:</strong> 177<br /><strong>Posted:</strong> 11 Nov 05 at 5:54PM<br /><br />I'm still not sure why this error happens, but I found that it goes away if I save and reload the document before CapturePageEx.&nbsp; I shouldn't have to do that, though.&nbsp; <IMG src="http://www.quickpdf.org/forum/smileys/smiley3.gif" border="0"> <span style="font-size:10px"><br /><br />Edited by PhilG</span>]]>
   </description>
   <pubDate>Fri, 11 Nov 2005 17:54:32 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post515.html#515</guid>
  </item> 
  <item>
   <title><![CDATA[Error &#111;n CapturePageEx : Hello. I&amp;#039;m using QuickPDF...]]></title>
   <link>http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post512.html#512</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=159">ExEE</a><br /><strong>Subject:</strong> 177<br /><strong>Posted:</strong> 10 Nov 05 at 11:30PM<br /><br /><P>Hello.&nbsp; I'm using QuickPDF 5.11 on VB6&nbsp;and am cropping a one-page document and&nbsp;imposing it onto a second document of the same size as the crop.&nbsp; But for some reason, the CapturePageEx command generates an overflow error.&nbsp; Here is my code.&nbsp; Any ideas?&nbsp; <BR>--------------------------------------------------------------<BR>&nbsp;&nbsp;&nbsp; Dim DocID, CrpID, CapID As Integer<BR>&nbsp;&nbsp;&nbsp; Dim w, h, wCr, hCr As Integer<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set QP = New iSED.QuickPDF<BR>&nbsp;&nbsp;&nbsp; QP.UnlockKey "&lt;key&gt;"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; QP.LoadFromFile "C:\WINDOWS\Desktop\Giraffe.pdf"<BR>&nbsp;&nbsp;&nbsp; DocID = QP.SelectedDocument<BR>&nbsp;&nbsp;&nbsp; QP.SelectPage 1<BR>&nbsp;&nbsp;&nbsp; QP.SetMeasurementUnits 2<BR>&nbsp;&nbsp;&nbsp; QP.SetOrigin 1<BR>&nbsp;&nbsp;&nbsp; w = QP.PageWidth<BR>&nbsp;&nbsp;&nbsp; h = QP.PageHeight<BR>&nbsp;&nbsp;&nbsp; wCr = w / 2<BR>&nbsp;&nbsp;&nbsp; hCr = h / 2<BR>&nbsp;&nbsp;&nbsp; QP.SetCropBox w / 4, h / 4, wCr, hCr<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; QP.NewDocument<BR>&nbsp;&nbsp;&nbsp; CrpID = QP.SelectedDocument&nbsp;&nbsp;&nbsp;&nbsp; 'Target document&nbsp;of imposition<BR>&nbsp;&nbsp;&nbsp; QP.SelectPage 1<BR>&nbsp;&nbsp;&nbsp; QP.SetMeasurementUnits 2<BR>&nbsp;&nbsp;&nbsp; QP.SetOrigin 1<BR>&nbsp;&nbsp;&nbsp; QP.SetPageDimensions wCr, hCr<BR>&nbsp;&nbsp;&nbsp; QP.MergeDocument DocID<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '&lt;--- Verified Pg Count&nbsp;= 2 and SelectedPage = 1<BR>&nbsp;&nbsp;&nbsp; CapID = QP.CapturePageEx(2, 1)&nbsp; '&lt;--- Overflow Error&nbsp; <IMG src="http://www.quickpdf.org/forum/smileys/smiley5.gif" border="0"><BR>&nbsp;&nbsp;&nbsp; QP.SelectPage 1<BR>&nbsp;&nbsp;&nbsp; QP.DrawCapturedPage CapID, w / 4, h / 4, wCr, hCr<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; QP.SaveToFile "C:\WINDOWS\Desktop\Cropped.pdf"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; QP = Nothing</P>]]>
   </description>
   <pubDate>Thu, 10 Nov 2005 23:30:01 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/error-on-capturepageex_topic177_post512.html#512</guid>
  </item> 
 </channel>
</rss>