AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de proyectos
  • Error management
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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.
Ejemplo
// 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> = 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.
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.
Componente: wd300vm.dll
Versión mínima requerida
  • Versión 10
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 28/03/2025

Señalar un error o enviar una sugerencia | Ayuda local