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 / Mobile Device (Pocket PC) access functions
  • Registry of the Mobile Device
  • Equivalence
  • Registry of a Smartphone
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
ceRegistryListValue (Function)
In french: ceRegistreListeValeur
Returns the name (and possibly the type) of the values for a registry key of the Mobile Device (Pocket PC) connected to the current computer.
Remark: To handle the registry of the Mobile Device, a connection must be established between the current computer and the Mobile Device (ceConnect).
Example
// Retrieve the list of values for the "HKEY_CURRENT_USER\Console" key
Info(ceRegistryListValue("HKEY_CURRENT_USER\Console"))
Syntax
<Result> = ceRegistryListValue(<Key path> [, <Detailed result>])
<Result>: Character string
  • List of requested information,
  • Empty string ("") if an error occurred or if the key contains no value. If an error occurs, you can get the details of the error with ErrorInfo.
This result has the following format:
  • Simple list: <Name of value 1 > + CR + <Name of value 2> + ... + <Name of value N>
  • Detailed list: <Name of value 1> +TAB + <Type of value 1> + CR + ... + <Name of value N> + TAB + <Type of value N>
    In this case, <Type> corresponds to the following letters:
    • "N": Numeric value
    • "T": String
    • "B": Binary value.
<Key path>: Character string (with quotes)
Full path of key to use.
<Detailed result>: Optional boolean
  • True to get the value and its type,
  • False (default value) to get the value only.
Remarks

Registry of the Mobile Device

The following branches do not exist on a Mobile Device:
  • HKEY_PERFORMANCE_DATA,
  • HKEY_CURRENT_CONFIG,
  • HKEY_DYN_DATA.

Equivalence

ceRegistryListValue and RegistryListValue have equivalent operating modes.
The only difference is:
  • ceRegistryListValue handles the registry of the Mobile Device from a WINDEV application.
  • RegistryListValue handles the registry of the Mobile Device only from a WINDEV Mobile application.

Registry of a Smartphone

The access to the registry may fail on some Smartphones. In this case, the ErrorOccurred variable is set to True.
Component: wd260ce.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/30/2020

Send a report | Local help