|
|
|
|
|
ListDLL (Function) In french: ListeDLL 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.
// 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>: 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|