Skip to content

Commit

Permalink
Merge pull request #34 from datalogics-aarroyo/update_readme
Browse files Browse the repository at this point in the history
Update README with activation instructions
  • Loading branch information
datalogics-josepha authored May 22, 2024
2 parents 89b57b4 + a2ce5d2 commit 2434d99
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,20 @@ Many of these sample programs automatically generate an output file or set of fi
*(Note: that the Forms Extension product and samples are available by talking to Datalogics Sales.)*

## ***Building and Running Samples***
Samples can be built and run easily in an IDE such as Visual Studio 2017, 2019, or 2022.
Samples can be built and run easily in an IDE such as Visual Studio 2017, 2019, or 2022.

## Free trial & license activation

To activate the free trial:
1. Visit https://www.datalogics.com/pdf-sdk-free-trial to obtain an activation key.
2. A prompt will appear on your console when executing Datalogics sample code.

Alternatively, to use an activation key in code, the <em>LicenseKey</em> member of the <em>Library</em> class can be set to
a valid activation key <b>prior</b> to instantiating the library.
```
Library.LicenseKey = "xxxx-xxxx-xxxx-xxxx";
using (Library lib = new Library())
{
//APDFL Code
}
```

0 comments on commit 2434d99

Please sign in to comment.