ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Contact functions (Lotus Notes or Android/iPhone/iPad)
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Lists the sources (or accounts) of the contacts saved on the device.
Example
// Lists the Google accounts of the phone
arrSource is array of ContactSource = ContactListSource()
IF NOT ErrorOccurred THEN
FOR EACH ASource OF arrSource
IF ASource.Type = "com.google" THEN
// Process ...
END
END
END
// Initialize the LOOP_Sources looper
// Lists the sources
garrContactSource = ContactListSource()
 
// Browse the sources
FOR EACH ASource OF garrContactSource
LooperAddLine(LOOP_Sources, ASource.Name, GiveSourceType(ASource.Type))
END
Syntax
<Result> = ContactListSource()
<Result>: Array of ContactSource variables
Array of ContactSource variables initialized with the list of sources (or accounts) for the contacts saved on the device.
If an error occurs, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo.
Related Examples:
WM Managing Contacts Cross-platform examples (WINDEV Mobile): WM Managing Contacts
[ + ] This example presents the management of contacts for Android et iOS.
It is used o:
- list the contacts found on the phone
- call the contacts
- send SMSs to the contacts
- ...
Component: wd300android.aar
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/24/2024

Send a report | Local help