ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Executable functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
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.
Example
// -- Code d'initialisation du champ "LISTE_Appli"
// Ajout des applications en cours d'exécution dans le champ "LISTE_Appli"
ListAdd(LISTE_Appli, ExeListProcess(exePID, exeShortName))

// -- Code de sélection d'une ligne de "LISTE_Appli"
// Extraction de l'identifiant de l'application sélectionnée dans la liste
InfoAppli is string = LISTE_Appli[LISTE_Appli]
IDAppli is string = ExtraitChaîne(InfoAppli, 1)
// Affichage des DLL en mémoire dans le champ "LISTE_DLL"
ListAdd(LISTE_DLL, ExeListDLL(Val(IDAppli)))
Syntax
<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.
Remarks
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.
Component: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help