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.
This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Mobile Device (Pocket PC) access functions
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 title of the specified Windows window.
Remarks:
  • ceWinTitle can be used only if a connection is established between the current computer and the Mobile device (ceConnect).
  • This function is available in 64-bit mode.
Example
// Enumerate the opened Windows windows
ResHandle is int = ceWinEnum()
// Browse all the windows
WHILE ResHandle <> Null
// Add the title of the window in a List Box control
ListAdd(LIST_Window, ceWinTitle(ResHandle))
// Go to the next window
ResHandle = ceWinEnum(ResHandle)
END
Syntax
<Result> = ceWinTitle(<Handle>)
<Result>: Character string
Title of the specified window.
<Handle>: Integer
Handle of window to use. This handle is returned by ceWinEnum.
Remarks
Caution: ceWinTitle returns no error code. To find out if this function has generated an error, use function ErrorInfo with constant errMessage.
Component: wd260ce.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/04/2020

Send a report | Local help