WapPush method returns a object which has various properties and methods to send Wap Push messages.
| Usage | Set objLicense = ObjectName.License |
| Parameters | None |
| Returns | The License object which allows setting of various license properties (e.g. CompanyName, Key etc) |
| Visual Basic / ASP (VBScript) |
| Dim objSMS As mCore.SMS, objLicense As Object Set objSMS = New mCore.SMS ' You can also use Set objSMS = CreateObject("mCore.SMS") ' In case of ASP (VBScript) to create object use ' Set objSMS = Server.CreateObject("mCore.SMS") ' In ASP use Response.Write instead of MsgBox Set objLicense = objSMS.License objLicense.Company = "My Company Name" objLicense.LicenseType = "PRO-DEVELOPER" objLicense.Key = "My License Key" MsgBox objLicense.IsLicensed Set objSMS = Nothing |