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 / Project functions
  • Error management
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns:
  • at runtime List of libraries (".DLL" files) used by the current WINDEV application, WINDEV Mobile or WEBDEV site. Only the libraries loaded in memory are listed.
  • in test mode: all libraries installed on the current workstation.
Example
// Récupération des librairies utilisées
ListeLibrairie is string = ListDLL()
// Parcours de cette liste
Librairie is string
Librairie = ExtractString(ListeLibrairie, firstRank, CR)
WHILE Librairie <> EOT
	// Récupération de la librairie
	Trace(ExtractString(Librairie, 1, TAB))
	// Librairie suivante
	Librairie = ExtractString(ListeLibrairie, nextRank, CR)
END
// Récupération des librairies utilisées
ListeLibrairie is string = ListDLL()
// Parcours de cette liste
FOR EACH STRING CheminLibrairie OF ListeLibrairie SEPARATED BY TAB + CR
	// Récupération de la librairie
	Trace(CheminLibrairie)
END
Syntax
<Result> = ListDLL()
<Result>: Character string
List of libraries (".DLL" files) used by the current application or installed on the current computer, in the following format:
<1st Library> + TAB + CR + <2nd Library> + TAB + CR + ...
+ <X library>
Where <X library> corresponds to the name and full path of library X.
Remarks

Error management

ListDLL 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: wd300vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help