Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!
Getting Started |
Post Reply |
Author | |
Deslyxia
Beginner Joined: 08 Feb 12 Status: Offline Points: 5 |
Post Options
Thanks(0)
Posted: 08 Feb 12 at 5:55PM |
Good Morning,
I am new to the forums and I am trying to get started with Quick PDF. I got my 30 day trial this morning and wanted to start going through the tutorials and figuring this stuff out but i am running into an issue. First I am not able to add the .dll to my project as a reference. Second the demo app runs and tells me it has written a new pdf to my c drive but when i navigate there i do not see a file . Any help getting started would be wonderful. |
|
AndrewC
Moderator Group Joined: 08 Dec 10 Location: Geelong, Aust Status: Offline Points: 841 |
Post Options
Thanks(0)
|
I assume you are using Visual Studio and C#.
The Quick PDF Library is not a .NET DLL. It is a standard windows DLL. 1. Add the QuickPDFDLL0814.cs file as a Reference to your project. ie. Ctrl+D - Add Existing Item. The .cs file is installed in your Quick PDF Installation directory. 2. Make sure the QuickPDFDLL0814.DLL file is in the same directory as your EXE or on the Windows Search PATH. 3. Use the following code as an example to use the class. using System; using System.Collections.Generic; using System.ComponentModel; ... ... using QuickPDFDLL0814; namespace QPLToolbox { public partial class Form1 : Form { PDFLibrary QP = new PDFLibrary("QuickPDFDLL0814.dll"); public Form1() { InitializeComponent(); Text = Text + " - QPL " + QP.LibraryVersion(); bool b = QP.LibraryLoaded(); if (QP.UnlockKey("<put your key here>") == 0) MessageBox.Show("QP.UnlockKey failed"); int ret = QP.LoadFromFile("out.pdf", ""); ... ...
|
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. About — Contact — Blog — Support — Online Store