TurboActivate Wizard vs Custom Interface

I just started using the LimeLM and would like to build in the activation interface into our app but am not finding any example, directions on how this would be accomplished. I see where I can start the TurboActivate.exe wizard but would like to keep from having to use the extra executable if possible. Do you have any example or tutorial showing how to accomplish this?

Thanks!

There is sample code for a variety of languages located in the API directory that is in the API download packiage. I built my own activation interface for Windows and Mac integrated into the program based off the examples and it was fairly easy. I dynamically linked instead of trying to use a static link as I was not working in Visual Studio (Using Embarcadero C++ Rad Studio).

I'm actually using C# and that sample code just spawns the turboactivate.exe process to handle the activation. I did look at a couple of the other samples and did not see specifically what calls needed to be made in order to register the product key. I think this is the call that I am looking for specifically.

The 2 functions you'll want to use are "CheckAndSavePKey()" and "Activate()". If you also want to add offline activation, then see here: https://wyday.com/limelm/help/offline-activation/

And if you want to submit extra data along with the activation data, see here: https://wyday.com/limelm/help/extra-data/

Thanks! Exactly what I was looking for!