ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Project functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the list of external components (".WDK" files) used by the current WINDEV or WINDEV Mobile application or by the current WEBDEV site.
Note All external components are listed, whether loaded into memory or not.
Example
// Récupération des composants utilisés
MaListeComposant is string = ComponentList()
// Parcours de cette liste
Composant is string
Composant = ExtractString(MaListeComposant, firstRank, CR)
WHILE Composant <> EOT
	// Récupération du composant (noms logique et physique)
	Trace(ExtractString(Composant, 1, TAB) + " - " + ExtractString(Composant, 2, TAB))
	// Composant suivant
	Composant = ExtractString(MaListeComposant, nextRank, CR)
END
Syntax
<Result> = ComponentList()
<Result>: Character string
List of external components (".DLL" files) used by the current application, in the following format:
<Name 1st Component> + TAB + <Path 1st Composant> + CR +
<Name 2nd Component> + TAB + <Path 2nd Composant> + CR +... +
<Name Nth Component> + TAB + <Path Nth Composant>
where:
  • <Name X Component> corresponds to the logical name of the external component X.
  • <Path X Component> corresponds to the name and full path of the external component X.
Remarks
ComponentList 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.
Component: wd300vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help