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
  • Gestión de errores
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Devuelve:
  • en tiempo de ejecución: la lista de bibliotecas (archivos".DLL") utilizadas por la aplicación WINDEV o WINDEV Mobile actual o por el sitio WEBDEV actual. Sólo se listan las bibliotecas cargadas en memoria.
  • en modo de prueba: todas las bibliotecas instaladas en el ordenador actual.
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>: Cadena de caracteres
Lista de bibliotecas (archivos".DLL") utilizadas por la aplicación actual o instaladas en el ordenador actual, en el siguiente formato:
<1st Library> + TAB + CR + <2nd Library> + TAB + CR + ...
+ <X library>
Donde <X library> corresponde al nombre y al ruta completo de la biblioteca X.
Observaciones

Gestión de errores

La función ListDLL no devuelve ningún código de error. Para determinar si esta función ha generado un error, utilice la función ErrorOccurred Variable. Si se produce un error, puede get más detalles sobre el error con ErrorInfo.
Componente: wd290vm.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: 27/05/2022

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