<?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 : Unlock</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 : Unlock]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 22:34:10 +0000</pubDate>
  <lastBuildDate>Mon, 13 Nov 2023 21:02: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=4027</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[Unlock : Seems to me that you&amp;#039;ve made...]]></title>
   <link>http://www.quickpdf.org/forum/unlock_topic4027_post16327.html#16327</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 4027<br /><strong>Posted:</strong> 13 Nov 23 at 9:02PM<br /><br />Seems to me that you've made the first big steps into development - congrats ;-)<div>You won't be able to buy newer versions of the library since beginning of 2023.</div><div>Debenu - the publishers of QuickPDF - were merged into the Foxit-team.</div><div>First time development was still active... support was less active... now Foxit is concentrating entirely on its own products. The aim was probably to remove the competitor from the market.</div><div><br></div><div>Anyway... version 13.12 is already a stable version with much functionalities and it depends on your needs if it's usefull for you.&nbsp;</div><div><br></div>]]>
   </description>
   <pubDate>Mon, 13 Nov 2023 21:02:22 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/unlock_topic4027_post16327.html#16327</guid>
  </item> 
  <item>
   <title><![CDATA[Unlock : Hello,thank you very much for...]]></title>
   <link>http://www.quickpdf.org/forum/unlock_topic4027_post16326.html#16326</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3364">Chris62</a><br /><strong>Subject:</strong> 4027<br /><strong>Posted:</strong> 12 Nov 23 at 4:46PM<br /><br />Hello,<div><br></div><div>thank you very much for your help :-) Great<img src="http://www.quickpdf.org/forum/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" /></div><div>I'm glad that there are still competent people who help others. I appreciate very much.</div><div><br></div><div>I solved the problem:</div><div>The AXDLL was registered in the system directory (SysWOW64).</div><div>That's why it didn't work in the VB6 IDE, where the DLL must be in the program directory?</div><div>As a compiled EXE it works everywhere, except within the IDE!</div><div><br></div><div>Can I actually buy newer versions of DEBENU ActiveX?</div><div>Or has all further development stopped?</div><div><br></div><div>Thank you</div><div>Chris</div>]]>
   </description>
   <pubDate>Sun, 12 Nov 2023 16:46:20 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/unlock_topic4027_post16326.html#16326</guid>
  </item> 
  <item>
   <title><![CDATA[Unlock : Hi Chris :)Here&amp;#039;s a complete...]]></title>
   <link>http://www.quickpdf.org/forum/unlock_topic4027_post16325.html#16325</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 4027<br /><strong>Posted:</strong> 10 Nov 23 at 5:39PM<br /><br />Hi Chris :)<div><br></div><div>Here's a complete sample perhaps this will give you an idea how to solve this issue.</div><div><br></div><div>Cheers and welcome here,</div><div>Ingo</div><div><br></div><div><br></div><div><br></div><div><div>Dim ClassName</div><div>Dim LicenseKey</div><div>Dim FileName</div><div><br></div><div>ClassName = "DebenuPDFLibraryAX1011.PDFLibrary"</div><div>LicenseKey = "..." 'SET YOUR LICENSE KEY HERE...</div><div>FileName = "c:\hello-world.pdf"</div><div><br></div><div>Dim QP</div><div>Dim Result</div><div><br></div><div>Set QP = CreateObject(ClassName)</div><div>Result = QP.UnlockKey(LicenseKey)</div><div>&nbsp; &nbsp;&nbsp;</div><div>If Result = 1 Then</div><div><br></div><div>&nbsp; &nbsp; MsgBox "Library version: " + QP.LibraryVersion</div><div>&nbsp; &nbsp; MsgBox (QP.LicenseInfo)</div><div><br></div><div>&nbsp; &nbsp; Call QP.DrawText(100, 500, "Hello world from Visual Basic 6.0.")</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; If QP.SaveToFile(FileName) = 1 Then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; MsgBox "File " + FileName + " written successfully."</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; MsgBox "Error, file could not be written."</div><div>&nbsp; &nbsp; End If</div><div>Else</div><div>&nbsp; &nbsp; MsgBox "Invalid license key. Please set your license key by editing this file."</div><div>End If</div></div><div><br></div><div><br></div><div>----------</div><div><br></div><div><br></div><div><div>Once you've downloaded and installed Quick PDF Library please register (using regsvr32.exe) the file shown below.</div><div><br></div><div>* DebenuPDFLibraryAX1011.dll</div><div><br></div><div>By default located at: C:\Program Files\Quick PDF Library\ActiveX\DebenuPDFLibraryAX1011.dll</div><div><br></div><div>Note: if you're using 64-bit Windows then look in the "Program Files (x86)" directory.</div><div><br></div><div><br></div></div><span style="font-size:10px"><br /><br />Edited by Ingo - 10 Nov 23 at 5:41PM</span>]]>
   </description>
   <pubDate>Fri, 10 Nov 2023 17:39:18 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/unlock_topic4027_post16325.html#16325</guid>
  </item> 
  <item>
   <title><![CDATA[Unlock : Hello,If I want to unlock the...]]></title>
   <link>http://www.quickpdf.org/forum/unlock_topic4027_post16324.html#16324</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3364">Chris62</a><br /><strong>Subject:</strong> 4027<br /><strong>Posted:</strong> 09 Nov 23 at 11:34AM<br /><br /><div>Hello,</div><div><br></div><div>If I want to unlock the QPDF with my key, I get an error message and a crash:</div><div><br></div><div><b>Runtime Error 217 at 13D0DC31</b></div><div><br></div><div><u>Here is the Source of VB6:</u></div><div><br></div><div><span style="white-space:pre">	</span>Dim LizenzKey As String</div><div><br></div><div>&nbsp;<span style="white-space:pre">	</span>LizenzKey = "ji3xxxxxxxxxxxxxy"&nbsp;&nbsp;</div><div><span style="white-space:pre">	</span>Set QPdf = New DebenuPDFLibraryAX1312.PDFLibrary</div><div><br></div><div><span style="white-space:pre">	</span>If QPdf.UnlockKey(LizenzKey) = 0 Then Exit Sub&nbsp; &nbsp;'*here is crashing!</div><div><br></div><div>Please help me</div><div>Thanks</div><div>Chris</div>]]>
   </description>
   <pubDate>Thu, 09 Nov 2023 11:34:15 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/unlock_topic4027_post16324.html#16324</guid>
  </item> 
 </channel>
</rss>