How to I get my runtime license for my SLIK-DA control when developing in Visual C++ 6.0?
How to I get my runtime license for my SLIK-DA control when developing in Visual C++ 6.0?
When using Visual C++ 6.0 you will need to specify a runtime license to be able to run your application without licensing errors.
Once you have licensed your machine, do the following:- Run "
GetRunTimeLicenseKey(&bstrKey)" to obtain your runtime-license key. - Then either:
- Record the key returned and hard-code it into the
CreateInstanceLic()function where the demo key is currently coded. - Persist the returned key (as a global variable or something) and include that as the key in the
CreateLicenseLic()function.
- Record the key returned and hard-code it into the
with your runtime key. This is why
GetRuntimeLicenseKey will only need to be called once.