|
|
|
|
|
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.
// 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
Sintaxis <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. Observaciones 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.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|