The Company property must contain the name of the company in whose name the mCore™ is licensed.
| Usage |
|
| Value Type | String |
| Access Mode | Read/Write |
| Remarks | The name of the company should be same as the one provided for purchasing the license key for mCore™. Using any other company name will not recognize the license key as valid. However, the name string provided is not case sensitive. |
| 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 |