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
  • Storage capacity
  • 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
SIMNbContact (Function)
In french: SIMNbContact
Returns the number of entries in the directory of the 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> = SIMNbContact([<Directory>])
<Result>: Integer
Number of entries found in the directory used.
<Directory>: Optional constant
Directory to use:
simPersonal
(Default value)
Personal directory of SIM card.
simLastCallDirectory of last numbers dialed.
Remarks

Storage capacity

The storage capacity depends on the SIM card used.

Managing errors

Caution: SIMNbContact 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)

SIMNbContact cannot be used on a Pocket PC equipped with an ARM v4T (or ARM v4T-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 SIMNbContact.
The differences between GO mode (simulator) and runtime are presented in Differences between GO mode and runtime.
Component: wp260ce.dll
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 05/12/2021

Send a report | Local help