<?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 : How to use DebenuPDFLibrary64DLL0915.DLL on .NET</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 : How to use DebenuPDFLibrary64DLL0915.DLL on .NET]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 01 May 2026 04:02:07 +0000</pubDate>
  <lastBuildDate>Wed, 07 Aug 2013 06:02:48 +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=2700</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[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Thanks Andrew. Finally its working...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11075.html#11075</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2438">eranga</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 07 Aug 13 at 6:02AM<br /><br />Thanks Andrew. Finally its working now&nbsp;<img src="http://www.quickpdf.org/forum/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" />]]>
   </description>
   <pubDate>Wed, 07 Aug 2013 06:02:48 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11075.html#11075</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Eranga,In VS under the Build Menu...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11074.html#11074</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483">AndrewC</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 07 Aug 13 at 5:37AM<br /><br /><div>Eranga,</div><div><br></div>In VS under the Build Menu there is an option callled Configuration Manager. &nbsp;You need to make sure that the active solution platform is set to x64 and not to x86. &nbsp;ie. &nbsp;You need to make sure that the project is actually creating a 64 bit DLL. &nbsp;If it is set to AnyCPU then I suggest to change it to x64 to force it to compile in 64bit mode.<div><br></div><div>To change from AnyCPU, go to Build, Configuration Manager option in the main menu. &nbsp;Click on the Platform dropdown in the 'Project contexts' list and choose New, choose x64 as the new platform and copy the settings from AnyCPU and press OK. &nbsp;You will find that your project now runs correctly.</div><div><br></div><div>I have tested the following code with VS 2012 using &nbsp;VB.NET 4.5 and it required the AnyCPU change to x64 to make it work correctly.</div><div><br></div><div><div>' --------------------------------------------------------------------------------------------------------------------------</div></div><div><br></div><div><div>Imports System</div><div>Imports System.Collections</div><div>Imports System.Data</div><div>Imports System.Diagnostics</div><div>Imports System.IO</div><div>Imports System.Text</div><div>Imports System.Windows.Forms</div><div>Imports System.Runtime.InteropServices</div><div><br></div><div>Imports WindowsApplication1.DebenuPDFLibraryDLL0915 ' The DebenuPDFLibraryDLL0915.vb import file must be added to the project</div><div><br></div><div>Public Class Form1</div><div><br></div><div>&nbsp; &nbsp; Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; Dim QP As PDFLibrary</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Dim Result</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Dim LicenseKey</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; LicenseKey = "&lt;insert your key here&gt;"</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Update path to DLL if necessary</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QP = New PDFLibrary("DebenuPDFLibrary64DLL0915.dll") 'DLL is in C:\Windows\System32&nbsp;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Insert your trial or commercial license key here&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Result = QP.LibraryLoaded()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; If Result = False Then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox("- DLL not loaded -")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox("DLL loaded correctly")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; End If</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; Result = QP.UnlockKey(LicenseKey)</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; If Result = False Then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox("- DLL not Unlocked -")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox("DLL Unlocked")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; End If</div><div>&nbsp; &nbsp; End Sub</div><div><br></div><div>End Class</div><div><br></div><div><div>' --------------------------------------------------------------------------------------------------------------------------</div></div><div><br></div><div><div><span style="line-height: 1.4;">In the 64bit mode you should be placing the DLL into \Windows\System32 and not into SysWow64 as Ingo correctly points out. &nbsp;It doesn't seem logical but that is how Microsoft designed it.</span></div><div><br></div><div>The safest option is to specify the full path to the DLL or to place the DLL into the same directory as the EXE file. &nbsp;In VS this will need to be in the Debug or Release subdirectory of your project directory.</div><div><div><br></div><div>Andrew.</div></div></div></div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2013 05:37:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11074.html#11074</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Hi Darkv,I did try the full path...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11073.html#11073</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2438">eranga</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 07 Aug 13 at 1:09AM<br /><br />Hi Darkv,<div>I did try the full path (i.e.&nbsp;C:\Users\eranga.imaduwa\Documents\Visual Studio 2012\Projects\TestDebenuQuickPDF\DebenuPDFLibrary64DLL0915.dll) but still it does not work. I think there is something wrong with the initial setup of the module. Can you or someone please tell me how to confirm if the installation was complete (Please note that I need to use the 64 bit version DLL therefore please provide instructions related to 64 bit version DLL as well).&nbsp;</div><div><br></div><div>Thanks</div><div>Eranga</div>]]>
   </description>
   <pubDate>Wed, 07 Aug 2013 01:09:36 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11073.html#11073</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Eranga,when you invoke the New...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11071.html#11071</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1511">darkv</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 06 Aug 13 at 9:53AM<br /><br />Eranga,<br><br>when you invoke the New pdflib(debenu....dll), could you try to refer to the dll fullpath.<br><br>I know that VS, sometimes does not use the system path variable (especially in debug mode)<br><br>Rgds<br><br>]]>
   </description>
   <pubDate>Tue, 06 Aug 2013 09:53:44 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11071.html#11071</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Thanks for the replies. I&amp;#039;ve...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11070.html#11070</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2438">eranga</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 06 Aug 13 at 6:58AM<br /><br />Thanks for the replies. I've tried what You have asked but still it does not seems to work (i.e. still get the message "- DLL not loaded -". Below is my code<div>I've also c<span style="line-height: 1.4;">opied&nbsp;DebenuPDFLibrary64DLL0915.dll to&nbsp;C:\Windows\System32\</span></div><div>I already had DebenuPDFLibraryDLL0915.vb included as a file on the project<br><div><br></div><div><div>Imports System</div><div>Imports System.Collections</div><div>Imports System.Data</div><div>Imports System.Diagnostics</div><div>Imports System.IO</div><div>Imports System.Text</div><div>Imports System.Windows.Forms</div><div>Imports System.Runtime.InteropServices</div><div><br></div><div>Imports visual_basic_dll_sample.DebenuPDFLibraryDLL0915 ' The DebenuPDFLibraryDLL0915.vb import file must be added to the project</div><div><br></div><div>Public Class Form1</div><div><br></div><div>&nbsp; &nbsp; Dim QP As PDFLibrary</div><div>&nbsp; &nbsp; Dim qp1 As Integer</div><div><br></div><div>&nbsp; &nbsp; Dim LicenseKey = "SOMECODE--not the actual code" ' Insert your trial or commercial license key here</div><div><br></div><div>&nbsp; &nbsp; Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load</div><div><span style="line-height: 1.4;">&nbsp; &nbsp; &nbsp; &nbsp; test1()</span></div><div>&nbsp; &nbsp; End Sub</div><div><br></div><div><span style="line-height: 1.4;">&nbsp; &nbsp; Private Sub test1()</span></div><div>&nbsp; &nbsp; &nbsp; &nbsp; Dim QP As PDFLibrary</div><div><span style="line-height: 1.4;">&nbsp; &nbsp; &nbsp; &nbsp; Dim Result</span></div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Update path to DLL if necessary</div><div>&nbsp; &nbsp; &nbsp; &nbsp; QP = New PDFLibrary("DebenuPDFLibrary64DLL0915.dll") 'DLL is in C:\Windows\SysWOW64&nbsp;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; 'Insert your trial or commercial license key here&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Result = QP.LibraryLoaded()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; If Result = False Then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox("- DLL not loaded -")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; End If</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Result = QP.UnlockKey(LicenseKey)</div><div>&nbsp; &nbsp; End Sub</div><div><br></div><div>End Class</div></div></div>]]>
   </description>
   <pubDate>Tue, 06 Aug 2013 06:58:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11070.html#11070</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Here is some sample C# code showing...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11068.html#11068</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=1483">AndrewC</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 06 Aug 13 at 4:18AM<br /><br />Here is some sample C# code showing how to use the library. &nbsp;It assumes that the DLL's are in the same directory as the EXE file or that the DLL's are copied into the Windows directory as indicated.<div><br></div><div>This code will automatically load the correct DLL based on the project configuration and the currently running CPU mode. &nbsp;ie 32 or 64bit mode.</div><div><br></div><div>Note also : The DebenuPDFLibrary...DLL is a Win32 DLL and not a .NET DLL so it cannot be added to the Project as a DLL in the same way that a .NET DLL can. &nbsp;You only need to add the DebenuPDFLibraryDLL0915.cs or .vb file to your project as an existing item. &nbsp;These import files can be found in the&nbsp;<span style="line-height: 1.4;">&lt;DQPL install dir&gt;\DLL\Import\CSharp or&nbsp;</span><span style="line-height: 1.4;">&lt;DQPL install dir&gt;\DLL\Import\VB.Net directories as required.</span></div><div><div><br></div><div><div>using System;</div><div>using System.Collections;</div><div>using System.Data;</div><div>using System.Diagnostics;</div><div>using System.IO;</div><div>using System.Text;</div><div>using System.Windows.Forms;</div><div>using System.Runtime.InteropServices;</div><div><br></div><div>using DebenuPDFLibraryDLL0915;</div><div><br></div><div>namespace QPLToolbox</div><div>{</div><div>&nbsp; &nbsp; public partial class Form1 : Form</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; PDFLibrary QP;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; public Form1()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; InitializeComponent();</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string dllName;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (IntPtr.Size == 4)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dllName = "DebenuPDFLibraryDLL0915.DLL"; &nbsp; &nbsp;// 32 bits &nbsp;- \Windows\SysWOW65</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dllName = "DebenuPDFLibrary64DLL0915.DLL"; &nbsp;// 34 bits - \Windows\System32</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; QP = new PDFLibrary(dllName);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (QP.LibraryVersion() == "")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MessageBox.Show("QPL DLL - " + dllName + " - Not loaded");</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bool b = QP.LibraryLoaded();</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (QP.UnlockKey("&lt;insert your key here&gt;") == 0)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MessageBox.Show("QP.UnlockKey failed");</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (QP.Unlocked() != 1)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MessageBox.Show("QP.UnlockKey failed");</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ...</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ...</div></div></div><span style="font-size:10px"><br /><br />Edited by AndrewC - 06 Aug 13 at 4:22AM</span>]]>
   </description>
   <pubDate>Tue, 06 Aug 2013 04:18:45 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11068.html#11068</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Hi Erenga!That&amp;#039;s wrong!The...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11067.html#11067</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 05 Aug 13 at 6:44PM<br /><br />Hi Erenga!<div><br></div><div>That's wrong!</div><div>The 64-bit-dll should be in the system32 (yes!)</div><div>and the 32-bit-dll should be in syswow64.</div><div>It's hard to understand Microsoft but it's so ;-)</div><div><br></div><div>Cheers and welcome here,&nbsp;</div><div>Ingo</div><span style="font-size:10px"><br /><br />Edited by Ingo - 05 Aug 13 at 6:44PM</span>]]>
   </description>
   <pubDate>Mon, 05 Aug 2013 18:44:31 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11067.html#11067</guid>
  </item> 
  <item>
   <title><![CDATA[How to use DebenuPDFLibrary64DLL0915.DLL on .NET : Hi,Can someone please shed some...]]></title>
   <link>http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11061.html#11061</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=2438">eranga</a><br /><strong>Subject:</strong> 2700<br /><strong>Posted:</strong> 05 Aug 13 at 2:18AM<br /><br />Hi,<div><br></div><div>Can someone please shed some light on how to use the DebenuPDFLibrary64DLL0915.DLL? I've tried the sample on the website but that does not work and it may be partly because the sample was using the 32bit version of the DLL. I've already done below</div><div><br></div><div>1. Installed the Debenu Quick PDF Library 9 Trial (i.e. its the EXE which runs an installer and create "Debenu Quick PDF Library" link on the desktop</div><div>2. Downloaded the .net sample from below link and followed the instructions but failed to compile the program</div><div>http://www.debenu.com/downloads/code-samples/dpl/visual-basic_net_dll_sample.zip</div><div>Note: I'm using VS 2012 and .NET 4.5</div><div><br></div><div>I tried below code</div><div><br></div><div><div>QP = New PDFLibrary("DebenuPDFLibrary64DLL0915.dll") 'DLL is in C:\Windows\SysWOW64&nbsp;</div><div><span style="line-height: 1.4;">'Insert your trial or commercial license key here&nbsp;</span></div><div>Result = QP.LibraryLoaded()</div><div>If Result = False Then</div><div>&nbsp; &nbsp; &nbsp;MsgBox("- DLL not loaded -")</div><div>End If</div></div><div><br></div><div>I'm getting DLL not loaded</div><div><br></div><div>I cannot directly reference&nbsp;DebenuPDFLibrary64DLL0915.DLL and also the DLL already available on Reference manager COM Library "Debenu Quick PDF Library 9.1.5 does not also seems to work</div><div><br></div><div><span style="line-height: 1.4;">What could be the reason? Is there a specific way to link this DLL to the app? Your prompt response is greatly appreciated. Thanks</span></div><div><br></div><div>Best Regards,</div><div>Eranga</div>]]>
   </description>
   <pubDate>Mon, 05 Aug 2013 02:18:13 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/how-to-use-debenupdflibrary64dll0915dll-on-net_topic2700_post11061.html#11061</guid>
  </item> 
 </channel>
</rss>