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
  • Equivalence
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
ceRunExe (Function)
In french: ceLanceAppli
Starts the execution of a program (an executable for example) from the current application. This program is run on the Mobile Device (Pocket PC) connected to the current computer.
Remarks:
  • To start a program on the Mobile Device connected to the current computer, a connection must be established between the current computer and the Mobile Device (ceConnect).
  • This function is available in 64-bit mode.
Example
// Start the calculator on the connected Mobile Device
ResStart = ceRunExe("calc.exe")
// Has a problem occurred?
IF ResStart = False THEN Error(ErrorInfo())
Syntax
<Result> = ceRunExe(<Program name> [, <Command line>])
<Result>: Boolean
  • True if the function was successful,
  • False otherwise. If an error occurs, use ErrorInfo to get the details of the error.
<Program name>: Character string (with quotes)
Name of the program to start.
If no path is specified, the program is sought in the directories accessible by PATH.
<Command line>: Optional character string (with quotes)
Command line passed to the executable (without the name of the executable itself).
Remarks

Equivalence

ceRunExe and ExeRun have equivalent operating modes.
The only difference is:
  • ceRunExe starts a program on the Mobile Device (Pocket PC) from a WINDEV application.
  • ExeRun starts a program on the Mobile Device (Pocket PC) only from a WINDEV Mobile application.
Component: wd260ce.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2020

Send a report | Local help