<?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 : Blank preview</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 : Blank preview]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 19 May 2026 04:27:54 +0000</pubDate>
  <lastBuildDate>Tue, 18 Dec 2007 02:25:28 +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=831</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[Blank preview :  Now that you mention it, that...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3999.html#3999</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=270">Autodidact</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 18 Dec 07 at 2:25AM<br /><br />Now that you mention it, that makes perfect sense - to me as well. I wish such little "easy to miss" obviousness could be mention a little clearer in the documentation.. The line "<i>The form field will then be removed from the document..</i>" did not quite trigger the thought of the index also being changed.<br><br>Thank you!<br><span style="font-size:10px"><br /><br />Edited by Autodidact - 18 Dec 07 at 2:25AM</span>]]>
   </description>
   <pubDate>Tue, 18 Dec 2007 02:25:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3999.html#3999</guid>
  </item> 
  <item>
   <title><![CDATA[Blank preview : It&amp;#039;s not weird, but expected...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3996.html#3996</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=115">chicks</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 17 Dec 07 at 6:39PM<br /><br />It's not weird, but expected behavior.<br /><br />When you flatten a field, it no longer exists in the PDF document.  Therefore, if you flatten what had been referred to as index #1, the field that was previously #2 is now #1, etc.  The correct methods are to flatten from last to first, or to always flatten field #1 if going from first to last.<br />]]>
   </description>
   <pubDate>Mon, 17 Dec 2007 18:39:54 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3996.html#3996</guid>
  </item> 
  <item>
   <title><![CDATA[Blank preview : Yepp, there is something weird...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3983.html#3983</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=270">Autodidact</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 17 Dec 07 at 7:14AM<br /><br />Yepp, there is something weird with the order the form fields are changed and flattened! Did a test with the following code;<br><br><font color="#666666" face="Courier New, Courier, mono">Dim X <br><b>For X = 1 To 3 </b><br>&nbsp;&nbsp;&nbsp; &nbsp;RetVal = QP1.SetFormFieldValue( X, Now() )<br>&nbsp;&nbsp;&nbsp; &nbsp;Response.Write( RetVal )<br><br>&nbsp;&nbsp;&nbsp; &nbsp;RetVal = QP1.FlattenFormField( X )<br>&nbsp;&nbsp;&nbsp; &nbsp;Response.Write( RetVal &amp; "&lt;br&gt;")&nbsp;&nbsp;&nbsp; &nbsp;<br>Next </font><br><br>gives the output:<br><br>11<br>11<br><b>00</b> (not changed, or flattened - thus not rendered)<br><br>While ..<br><br><font color="#666666" face="Courier New, Courier, mono">Dim X <br><b>For X = 3 To 1 step -1</b><br>&nbsp;&nbsp;&nbsp;&nbsp; RetVal = QP1.SetFormFieldValue( X, Now() )<br>&nbsp;&nbsp;&nbsp; &nbsp;Response.Write( RetVal )<br><br>&nbsp;&nbsp;&nbsp; &nbsp;RetVal = QP1.FlattenFormField( X )<br>&nbsp;&nbsp;&nbsp; &nbsp;Response.Write( RetVal &amp; "&lt;br&gt;")&nbsp;&nbsp;&nbsp; &nbsp;<br>Next </font><br><br>Works as expected. <img src="http://www.quickpdf.org/forum/smileys/smiley5.gif" border="0" align="absmiddle" alt="C&#111;nfused" /><br>]]>
   </description>
   <pubDate>Mon, 17 Dec 2007 07:14:06 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3983.html#3983</guid>
  </item> 
  <item>
   <title><![CDATA[Blank preview : I intended to clean up the ASP...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3982.html#3982</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=270">Autodidact</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 17 Dec 07 at 6:58AM<br /><br />I intended to clean up the ASP test-code and make some structured notes before gracefully taking your generous offer Marian. As I did, I managed to have the RenderPreviewToFile work as intended without it complaining about the lack of access-rights to the system32 folder. I also checked the access-rights to the folder, and it was not left escalated from my previous testing.<br><br>Happy as I was, I scrapped all ASP.NET testing (although I expect some challenges there too later on), and ventured on to see if I could manage to have it render the content of the form-fields as well, and I did - using the FlattenFormField function.<br><br>The code did not change and flatten all fields (function returned 0), but for some weird reason, moving the code lines (order of fields being changed - they are actually changed by name. not index) it did change, flatten and render all fields.. 8o)<br><br>Now I need to check the current test-code on another computer and then request my web host to install/register the ActiveX so I can test it live.<br><br><br>]]>
   </description>
   <pubDate>Mon, 17 Dec 2007 06:58:46 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3982.html#3982</guid>
  </item> 
  <item>
   <title><![CDATA[Blank preview : Whe using QuickPDF with Web or...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3981.html#3981</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=324">marian_pascalau</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 14 Dec 07 at 5:57AM<br /><br /><P>Whe using QuickPDF with Web or with a normal Exe there is no difference other then "hosting" environmen. </P><DIV>Can you please provide a sample program (in form of source code), written in C++, C#, VB, VBS or Delphi and send it to </DIV><DIV>&nbsp;&nbsp;&nbsp; support(at)quickpdf.org. </DIV><DIV>&nbsp;</DIV><DIV>I will check your problem when I will have some free time.</DIV><DIV>&nbsp;</DIV><DIV>Regards :-)</DIV>]]>
   </description>
   <pubDate>Fri, 14 Dec 2007 05:57:22 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3981.html#3981</guid>
  </item> 
  <item>
   <title><![CDATA[Blank preview : I&amp;#039;m testing critical functionality...]]></title>
   <link>http://www.quickpdf.org/forum/blank-preview_topic831_post3976.html#3976</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=270">Autodidact</a><br /><strong>Subject:</strong> 831<br /><strong>Posted:</strong> 10 Dec 07 at 6:51AM<br /><br />I'm testing critical functionality of the ActiveX library (5.22) before turning down or going for making a web-application. The application is to make users select a template, change some text and see a preview before approving the changes to be saved in a new file, ready for printing..<br><br>Initially I tested the SavePagePreview function that seem to work as expected, but in the second round of test where I'm using a premade PDF and altering the value of a form field - the render is totally white/blank. <br>After further testing I'm able to have it render added/drawn text, but the rest of the content already in the file (text, image and form field) are not rendered.<br><br>This is unfortunately a showstopper, so I'm in need for some help/advice..<br><br>BTW; I have tried the RenderDocumentToFile function as well, but that function has a serious limitation as it seem to ignore / not use the setting of temp path/file. It seems to generate a temporary file in the system32 folder - something the webhost never will allow to give rights to..<br>]]>
   </description>
   <pubDate>Mon, 10 Dec 2007 06:51:25 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/blank-preview_topic831_post3976.html#3976</guid>
  </item> 
 </channel>
</rss>