<?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 : SetPageContent</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 : SetPageContent]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 19:04:21 +0000</pubDate>
  <lastBuildDate>Thu, 22 Apr 2010 11:50:34 +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=1423</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[SetPageContent : Hi!If you want to see the string&amp;#034;This...]]></title>
   <link>http://www.quickpdf.org/forum/setpagecontent_topic1423_post6420.html#6420</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1423<br /><strong>Posted:</strong> 22 Apr 10 at 11:50AM<br /><br />Hi!<br><br>If you want to see the string<br>"This is my content to write to new page"<br>on your new page you should use DrawText.<br>http://www.quickpdflibrary.com/help/quickpdf/Text.php<br><br>Cheers, Ingo<br><br>]]>
   </description>
   <pubDate>Thu, 22 Apr 2010 11:50:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/setpagecontent_topic1423_post6420.html#6420</guid>
  </item> 
  <item>
   <title><![CDATA[SetPageContent : Dear Ingo,Thanks for your reply....]]></title>
   <link>http://www.quickpdf.org/forum/setpagecontent_topic1423_post6419.html#6419</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1301">thangnvhl</a><br /><strong>Subject:</strong> 1423<br /><strong>Posted:</strong> 22 Apr 10 at 8:25AM<br /><br />Dear Ingo,<br><br>Thanks for your reply. I'm not going to clone or copy content of an existing page to a new page. I only want to write new content that was saved to sContent variable to my new page<br><br>In my code, sContent is a string variable that was assigned before.<br>ex: sContent = "This is my content to write to new page";<br>]]>
   </description>
   <pubDate>Thu, 22 Apr 2010 08:25:29 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/setpagecontent_topic1423_post6419.html#6419</guid>
  </item> 
  <item>
   <title><![CDATA[SetPageContent : Hi!If you want to have existing...]]></title>
   <link>http://www.quickpdf.org/forum/setpagecontent_topic1423_post6418.html#6418</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 1423<br /><strong>Posted:</strong> 22 Apr 10 at 8:12AM<br /><br />Hi!<br><br>If you want to have existing content of a page to a new page of the same document you should use the clone- or copy-functions for pages:<br>http://www.quickpdflibrary.com/help/quickpdf/PageManipulation.php<br>In your code i don't see a GetPageContent... only a set... so in sContent is nothing?<br>But again: Use copy... or clone...<br><br>Cheers and welcome here,<br>Ingo<br><br>]]>
   </description>
   <pubDate>Thu, 22 Apr 2010 08:12:48 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/setpagecontent_topic1423_post6418.html#6418</guid>
  </item> 
  <item>
   <title><![CDATA[SetPageContent : I have following code to add a...]]></title>
   <link>http://www.quickpdf.org/forum/setpagecontent_topic1423_post6416.html#6416</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1301">thangnvhl</a><br /><strong>Subject:</strong> 1423<br /><strong>Posted:</strong> 22 Apr 10 at 5:11AM<br /><br />I have following code to add a new page to an existing file.<br><br>PDFLibrary PDFLib = new PDFLibrary();<br><br>if (PDFLib.UnlockKey("MyRegisteredKey") == 1)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; if (PDFLib.LoadFromFile(sInputPdfFile) == 1)<br>&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (PDFLib.SelectPage(PDFLib.PageCount()) == 1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; int iNewPage = PDFLib.NewPage();<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (iNewPage != 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; if (PDFLib.SelectPage(iNewPage) == 1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; PDFLib.CombineLayers();<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; PDFLib.SetPageContent(sContent);<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; PDFLib.SaveToFile(sOutputFile);<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;&nbsp;&nbsp;&nbsp;&nbsp; <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; <br>&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br>}<br><br>After execute application, I open the result file and scroll to the last page (mean new page). I received error: "An unrecognized token 'Electronically' was found". Then, content of new page is blank.<br><br>Did I make something wrong in my code?<br>]]>
   </description>
   <pubDate>Thu, 22 Apr 2010 05:11:24 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/setpagecontent_topic1423_post6416.html#6416</guid>
  </item> 
 </channel>
</rss>