Evaluation key doesn't work

The PDF Creator enables you to create secure PDF documents and to view, print and process existing PDF documents.
If you have any questions about the installation and usage of the PDF Creator please post them here.
Post Reply
timmed
Posts: 4
Joined: Fri Nov 10 2006

Evaluation key doesn't work

Post by timmed »

Is there an issue with the evaluation key in the documentation for PDF Creator Pro 2.0? I just downloaded it and pasted the key directly from the help???This vb.net code throws an exception on the setlicensekey instruction. The error message just says "unspecified error".

Dim doc As ACPDFCREACTIVEX.PDFCreactiveX
Const LicenseTo As String = "Evaluation Version"
Const ActivationCode As String = _
"07EFCDAB01000100C71720CB68064821476D5" & _
"694497DB50A43E40D4A14E5D47EF707562F28" & _
"7274F4AA099D562E4F6DC6F5CF1F74904B9BF" & _
"E995AC248306749C9092EA202478B0E1D7274" & _
"8B5D78870EC142CC8B9A4ABF6AA49DDF7E8AB" & _
"55D617055803A"
Try
doc = New ACPDFCREACTIVEX.PDFCreactiveX
doc.SetLicenseKey(LicenseTo, ActivationCode)
doc.Open("c:\temp\foobarduplex.pdf", "")
doc.Print("myprinter", False)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Post Reply