Welcome Guest Search | Active Topics | Sign In | Register

Register license in EO.PDF.xml Options
Pg_dk
Posted: Monday, September 29, 2014 4:06:30 AM
Rank: Newbie
Groups: Member

Joined: 1/18/2009
Posts: 2
hi

I am using merge function in the DLL EO.PDF from MS dynamics NAV2013 where i cannot add the license key in the code, how can I register the license? i have try to add this to license section in the EO.PDF,XMl file, but it doesn't work

Code language partly C/SIDE and C#

best regards
eo_support
Posted: Monday, September 29, 2014 9:30:24 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,080
Hi,

It's a single method call and you can do it whatever way you would like. For example, you can store the key in your database and then write some code like this:

Code: C#
//Read the license from your database
string s = ReadLicenseKeyFromDB();

//Apply the license key
EO.Pdf.Runtime.AddLicense(s);


Here ReadLicenseKeyFromDB will be a function that you will need to write to read the license key from your database. Obviously you do not have to do it this way, this is just to show you that you can do it in pretty much anyway you want. From EO.Pdf point of view, EO.Pdf.Runtime.AddLicense is the only way to apply a license.

Thanks!


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.