ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Attention : This is version 26 of this documentation page. This feature may have been changed or removed in a higher version.
Help / WLanguage / WLanguage functions / Standard functions / Specific Mobile functions / SIM card functions
  • Managing errors
  • ARM v4T processors (and compatible processors)
  • Differences between GO mode and run time
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
Reads an entry in the directory of SIM card.
Example
// Number of entries in the personal directory?
NbEntries = SIMNbContact()
 
FOR Subscript = 1 TO NbEntries
// Add each entry to a List Box control
ListAdd(TABLE_EntryList, SIMRead(Subscript))
END
Syntax
<Result> = SIMRead(<Entry subscript> [, <Directory>])
<Result>: Character string
Value of elements in the entry read, in the following format: <Entry name> + TAB + <Phone number of entry>
<Entry subscript>: Integer
Subscript of entry to read.
<Directory>: Optional constant
Directory to use:
simPersonal
(Default value)
Personal directory of SIM card.
simLastCallDirectory of last numbers dialed.
Remarks

Managing errors

Caution: SIMRead returns no error code. To find out whether an error was generated by this function, use the ErrorOccurred variable. If an error occurs, you can get the details of the error with ErrorInfo.

ARM v4T processors (and compatible processors)

SIMRead cannot be used on a Mobile Device equipped with an ARM v4T processor (or with a compatible processor).

Differences between GO mode and run time

In GO mode (simulation on the development computer), a WLanguage error is generated during the call to SIMRead.
The differences between GO mode (simulator) and real use are presented in Differences between GO mode and real use.
Component: wp260ce.dll
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 06/01/2021

Send a report | Local help