The Key property must contain the license key string supplied when mCore™ license was purchased.
| Usage |
|
| Value Type | String |
| Access Mode | Read/Write |
| Remarks | The license key string should be exactly the same as was provided when the license was purchased. The key provided is unique for your company name, license type and mCore™ version for which the license was purchased. |
| 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 |