ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Project functions
  • Managing errors
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns:
  • at runtime: the list of libraries (".DLL" files) used by the current WINDEV or WINDEV Mobile application or by the current WEBDEV site. Only the libraries loaded in memory are listed.
  • in test mode: all the libraries installed on the current computer.
Example
// Retrieve the libraries used
LibraryList is string = ListDLL()
// Browse this list
Library is string
Library = ExtractString(LibraryList, firstRank, CR)
WHILE Library <> EOT
// Retrieve the library
Trace(ExtractString(Library, 1, TAB))
// Next library
Library = ExtractString(LibraryList, nextRank, CR)
END
// Retrieve the libraries used
LibraryList is string = ListDLL()
// Browse this list
FOR EACH STRING LibraryPath OF LibraryList SEPARATED BY TAB + CR
// Retrieve the library
Trace(LibraryPath)
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

Managing errors

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

Last update: 05/26/2022

Send a report | Local help