|
|
|
|
|
- Use in service mode
- Running an APK file setup
- Background application: Specific to Android 10 and higher
ShellExecute (Function) In french: LanceAppliAssociée Opens a document in its associated application. The application is opened first, then the specified document. Remarks: - The application used to open the document is the one associated with the extension of the document in Windows (INI file or registry). This associated application may differ according to the configurations used.
- This document is opened on the server. This function can be used on the development computer because this compute is considered as being the server.
- This document must be found on the server or at any Internet address. This document is opened on the computer of the Web user.
- The application used to open the document is the application corresponding to the MIME type associated with the file extension. If several applications correspond to the same type of file, a dialog box will be displayed to select the application to start.
- The ShellExecute function is blocking: the application will continue to run only when the document and its associated application are closed.. The document must be on the computer.
- To display any page in a browser, you can also use BrowserRunApp.
Syntax
<Result> = ShellExecute(<File name> [, <Verb>])
<Result>: Boolean - if the document exists and if the associated application has been launched.
- False otherwise.
<File name>: Character string Name and full (or relative) path of the document to open. A UNC path can be used. If space characters are found in the name or path of the document to open, the quotes found around this parameter must be tripled. <Verb>: Optional character string Verb that must be used to start the document. The verbs are defined for each application, to indicate the actions that can be performed. The most common verbs are open or print. If this parameter is not specified, the verb used will be the default verb for the type of document. Remarks Use in service mode When ShellExecute is used in service mode, it runs the associated application but the interface of this application is not visible. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|