|
Activating the components with the license key ActiveX/DLL edition, ActiveX controls In this case you have to use the SetLicenseKey method of the ElSBLicenseManagerX control and pass the value of your license key as Key parameter. Remember, that you don't pass any file name, registry key name or anything else. You pass the license key itself (a text string).
HRESULT _stdcall SetLicenseKey([in] BSTR Key );
All sample projects include the call to SetLicenseKey method which passes the evaluation key to the components. If something doesn't work, please check the samples. You will find the sample projects in <SecureBlackbox>\Samples subfolder. ActiveX/DLL edition, DLL interface You need to call SetLicenseKey function and pass the value of your license key as Key parameter. Call SetLicenseKey after calling SBInitialize library function. Note, that each DLL has it's own SetLicenseKey method which must be called independently.
__stdcall void SetLicenseKey(PCHAR Key);
|

