AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de ejecutables
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns the list of libraries (".DLL" files) used by one of the applications currently run. This application may correspond to a WINDEV, WINDEV Mobile or other application.
Note: Only in-memory libraries are listed.
Ejemplo
// -- Initialization code of "LIST_App" control
// Add the applications currently run into the "LIST_App" control
ListAdd(LIST_App, ExeListProcess(exePID, exeShortName))

// -- Code for selecting a row in "LIST_App"
// Extract the identifier of the application selected in the list
AppInfo is string = LIST_App[LIST_App]
AppID is string = ExtractString(AppInfo, 1)
// Display the DLLs found in memory in the "LIST_DLL" control
ListAdd(LIST_DLL, ExeListDLL(Val(AppID)))
Sintaxis
<Result> = ExeListDLL([<Application identifier>])
<Result>: Character string
List of libraries (".DLL" files) used by the specified application in the following format:
<1° librairie> + RC + <2° librairie> + RC + ... + <N° librairie>
Where <X Library> corresponds to the name and full path of library X.
<Application identifier>: Optional Integer constant
Identifier of the application to use. This identifier is returned by ExeListProcess.
If this parameter is not specified, <Result> will correspond to the list of libraries for the current process.
Observaciones
ExeListDLL returns no error code. To determine if this function generated an error, use the ErrorOccurred variable. If an error occurs, you can get more details on the error with ErrorInfo.
Componente: wd300std.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local