|
|
|
|
|
- Differences between GO mode and runtime
- Required permissions
SMSNext (Function) In french: SMSSuivant Reads the following SMS message stored on the Android phone. The characteristics of this SMS are contained in the SMS structure. Note: Only SMS messages stored in the phone's memory can be handled by the SMS functions.
// Number of SMS messages stored on the phone's memory STC_NbSMS = "You have " + SMSNbMessage(smsMemory) + " messages." // Read the 1st SMS message stored on the phone's memory ResRead is boolean = SMSFirst(smsMemory) WHILE ResRead = True // Display the characteristics of this SMS in a Table control: // the SMS variable is automatically updated TableAddLine(TABLE_SMSTable, SMS.Index, SMS.Message, SMS.Number, SMS.ReceiveDate) // Read the other SMSs ResRead = SMSNext(smsMemory) END Syntax
<Result> = SMSNext(<Location>)
<Result>: Boolean - True if the SMS was read. SMS.ReceiveDate, SMS.Index, SMS.Message, SMS.Number and SMS.NumberType are automatically filled. For more details, see SMS structure.
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Location>: Integer constant Location of SMS to read: | | smsMemory | SMS stored in the device memory. |
Remarks Differences between GO mode and runtime A WLanguage error is raised when SMSNext is called in test mode (GO) (simulation on the development computer). Required permissions This function changes the permissions required by the application. Permission required: READ_SMS Component: wd300android.aar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|