problem using iSED.dll
Printed From: Debenu Quick PDF Library - PDF SDK Community Forum
Category: For Users of the Library
Forum Name: General Discussion
Forum Description: Discussion board for Debenu Quick PDF Library and Debenu PDF Viewer SDK
URL: http://www.quickpdf.org/forum/forum_posts.asp?TID=705
Printed Date: 22 Nov 24 at 11:10PM Software Version: Web Wiz Forums 11.01 - http://www.webwizforums.com
Topic: problem using iSED.dll
Posted By: mgbalaji
Subject: problem using iSED.dll
Date Posted: 14 Apr 07 at 3:25AM
Hi,
I am new to this forum. Currently i am developing one tool using VB.
I am using iSED.dll (v4.41) in this tool. I have registered this dll. But I dont know how to use.
Please show sample codes (open the existing pdf file and search the text) to use this dll in VB.
Thanks...
|
Replies:
Posted By: Ingo
Date Posted: 15 Apr 07 at 4:52PM
Hi MG!
You can use our last dll (5.21 or 5.22) here from our download-section with your licence key - you'll avoid few bugs ;-)
Here a short example (in Delphi): QP := TiSEDQuickPDF.Create;
try
QP.UnlockKey('MyLicenceKey'); QP.LoadFromFile(Edit1.text);
If QP.Encrypted > 0 Then QP.Unencrypt;
x := QP.PageCount; STR := '';
for i := 1 to x Do begin QP.SelectPage(i); QP.CombineLayers; STR := QP.GetPageText(0); // now you should do anything with the text ... ;-) end;
finally QP.Free;
end; Best regards, Ingo
BTW: Here in the forum are a lot of code snippets. Use the search function (above in the menu) ...
|
Posted By: mgbalaji
Date Posted: 16 Apr 07 at 9:45AM
Hi Ingo,
Thanks for ur reply. This iSED.dll v4.41 were used some other tools in our company. So if i register the new version means will it affact the older tools?.
Also u have given the example in Delphi. But i dont know about delphi. So u will give this same as in VB means this will help me.
Thanks...
|
|