LicenseType Property

Description:

The LicenseType property must contain the string defining the type of mCore™ license (e.g. "PRO-DISTRIBUTION", "LITE-STANDARD", "PRO-STANDARD" etc).

   

Usage
  • ObjectName.License.LicenseType = strLicenseType
  • strLicenseType = ObjectName.License.LicenseType
Value Type String
Access Mode Read/Write
Remarks The license type string should be same as the one for which the license was purchased. The key provided is unique for your company name, license type and mCore™ version for which the license was purchased.

Usage Example:

Visual Basic / ASP (VBScript)
Dim objSMS As mCore.SMS
Set objSMS = New mCore.SMS
objSMS.License.Company = "My Company Name"
objSMS.License.Key = "My-License-Key"
objSMS.License.LicenseType = "PRO-DISTRIBUTION"
If objSMS.IsLicensed Then
     MsgBox objSMS.About
Else
     MsgBox "Invalid License Information!"
End If
Set objSMS = Nothing

  

Copyright © IG Logix Softech Pvt Ltd, All Rights Reserved