How to update the ClientVersion / ApplicationVersion
How to update the ClientVersion / ApplicationVersion
string dataSet;
string response;
string clientVersion = "1.0.2";
ILicenseInfo li = lv.QlmLicenseObject.GetLicenseInfo(string.Empty, lv.ActivationKey, false, out dataSet, out response);
if (li.ClientVersion != clientVersion)
{
lv.QlmLicenseObject.ApplicationVersion = clientVersion;
lv.QlmLicenseObject.ReactivateLicense (string.Empty, lv.ActivationKey, Environment.MachineName, out response);
}Dim dataSet As String
Dim response As String
Dim clientVersion As String
Dim li As ILicenseInfo
clientVersion = "1.0.3"
dataSet = String.Empty
response = String.Empty
li = lv.QlmLicenseObject.GetLicenseInfo(String.Empty, lv.ActivationKey, False, dataSet, response)
If li.ClientVersion <> clientVersion Then
lv.QlmLicenseObject.ApplicationVersion = clientVersion
lv.QlmLicenseObject.ReactivateLicense(String.Empty, lv.ActivationKey, Environment.MachineName, response)
End IfPreviousHow to hide sensitive information from a third-party developerNextHow to change the name of your product
Last updated