Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README with activation instructions #36

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
```
Loading