Skip to content

Commit

Permalink
Update README with activation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
datalogics-aarroyo authored and datalogics-robb committed May 23, 2024
1 parent 96187c5 commit da05cea
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 da05cea

Please sign in to comment.