Dears
We just bought the PDF STAMP Developer, find enclosed the link
but we forgot to mention that it is for a 64 bit environment and not for 32bits and if I understand correctly it would be PDFStampCom, is it possible to have the files for PDFStampCom sdk?
Many thanks
Customer
-----------------------------------------
Thanks for your message, PDFStampOcx.dll file is a 32bit DLL library for 32bit applications only. PDFStampCom.exe is a COM component for both 32bit and 64bit applications.
If you wish call PDFStamp SDK Developer License from 64bit applications, you have to use PDFStampCom.exe COM interface.
You can run following command line with administrator privilege to register PDFStampCom.exe into your system,
PDFStampCom.exe /regserver
If you wish to call PDFStampCom.exe from both 32bit and 64bit applications, you can use following sample code,
--------------------------
Set pdfstamp = CreateObject("PDFStampCOM.CPDFStamp")
pdfstamp.veryRegEx "XXXXXXXXXXXXXX"
id = pdfstamp.veryOpenEx("D:\verypdf.pdf", "D:\out.pdf")
If (id <= 0) Then
WScript.Quit
End If
nRet = pdfstamp.veryAddTextEx(id, 2, "VeryPDF", 255, 0, 0, 0, 0, 0, 0, 300, 0, 10, 1, "https://www.verypdf.com", 0)
pdfstamp.veryCloseEx (id)
--------------------------