One Product (Main License), Pay Wall inside of Main Product to Access Additional Product.Answered

Wyatt, we are using a License for our Main Product. It works amazing. Inside of our Main Product we want to offer an optional Product that will be accessible by another Product Key (Different Product Inside of LimeLM)

I am using             

ta = New wyDay.TurboActivate.TurboActivate("Our New Product GUID") ta.SetCustomActDataPath("C:\\TheFloralPOS\\Event_Manager\\")

We get error: Failed to Check if activated: The Product details file “TurboActivate.dat” failed to load. Its either missing or corrupt.

I Clicked on TurboActivate.exe inside of that folder and it works properly….Any Ideas?

Tim

I have used:

ta.SetCustomActDataPath("C:\TheFloralPOS\Event_Manager")

AND

ta.SetCustomActDataPath("C:\\TheFloralPOS\\Event_Manager")

same result

Answer

I assume you're using VB.NET. Don't use SetCustomActDataPath, that function has very limited use-cases.

Just add the full path of the TurboActivate.dat file to the second argument of the constructor:

ta = New wyDay.TurboActivate.TurboActivate("Our New Product GUID", @"C:\Full Path\To\The\TurboActivate.dat")
👍 1

That worked perfectly. Thank you Wyatt!