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 / Windows management functions / Mouse functions
  • Displaying the result in a List Box or Combo Box control
  • Keyboard icon for the Mobile Device (Pocket PC)
  • Managing errors
  • ARM v4T processors (and compatible processors)
  • Operating mode in GO mode and at runtime
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
Returns the list of keyboard types available on the Mobile Device (Pocket PC).
The different types of keyboards correspond to the input methods proposed by the Mobile Device (Transcriber and Block Recognizer for example).
Example
// Add the available types of keyboards into "COMBO_Keyboard"
ListAdd(COMBO_Keyboard, SIPList())
Syntax
<Result> = SIPList([<Details>])
<Result>: Character string
  • List of keyboard types available on the Mobile Device.
  • Empty string (""). If the Mobile Device is using an external keyboard, the function may not be available and it may return an empty string.
The list of keyboard types has the following format:
  • if <Details> is not specified or if it corresponds to False:
    <TypeKeyboard1> + CR + <TypeKeyboard2> + CR +...+ CR + <TypeKeyboardN>
  • if <Details> corresponds to True:
    <TypeKeyboard1> + TAB + <IdentifierKeyboard1> + CR + ...
    + CR + <TypeKeyboardN> + TAB + <IdentifierKeyboardN>
<Details>: Optional boolean
  • True to return the type and the identifier of each keyboard,
  • False (default value) to return the type of the keyboard.
Remarks

Displaying the result in a List Box or Combo Box control

<Result> can be directly assigned to a List Box or Combo Box control by ListAdd. Each line will contain the type (or the type and the identifier) of one of the available keyboards.

Keyboard icon for the Mobile Device (Pocket PC)

The icon representing the Mobile Device keyboard ( for example) allows you to manage the use of keyboard.

Managing errors

Caution: SIPList returns no error code. To find out whether an error was generated by this function, use the ErrorOccurred variable. To find out the error details, use ErrorInfo.

ARM v4T processors (and compatible processors)

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

Operating mode in GO mode and at runtime

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

Last update: 09/18/2020

Send a report | Local help