|
|
|
|
|
ListDLL (Function) In french: ListeDLL 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.
ListeLibrairie is string = ListDLL()
Librairie is string
Librairie = ExtractString(ListeLibrairie, firstRank, CR)
WHILE Librairie <> EOT
Trace(ExtractString(Librairie, 1, TAB))
Librairie = ExtractString(ListeLibrairie, nextRank, CR)
END
ListeLibrairie is string = ListDLL()
FOR EACH STRING CheminLibrairie OF ListeLibrairie SEPARATED BY TAB + CR
Trace(CheminLibrairie)
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 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|