ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Project functions
  • Loading an external component
  • Finding the external component to load
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Specifies the access path to an external component of project. This external component is not loaded.
Remark: The mode for loading the external component (when starting the project or when using an element of the external component for the first time) is defined when the external component is included in the project.
Example
// Access path to the component
ResPath is int
ResPath = ComponentLocate(MyComponent, "C:\MyComponents")
SWITCH ResPath
CASE cisAbsent:
Error("The specified component cannot be found in the specified directory")
CASE cisVersionTooOld, cisVersionTooRecent:
Error("The version of the component is not compatible with the executable")
CASE cisLoaded:
Info("The specified component is already loaded")
CASE cisReady:
Info("The specified component is available")
END
Syntax
<Result> = ComponentLocate(<Component name> , <Access path to component>)
<Result>: Integer constant
Status report of operation:
cisAbsentThe external component is not found in the specified path.
cisLoadedThe external component is already loaded. ComponentLocate has no effect.
cisReadyThe external component is available and usable.
cisVersionTooOldThe version of external component is too old. It is not compatible with the current executable.
cisVersionTooRecentThe version of external component is too recent. It is not compatible with the current executable.
<Component name>: Character string
Name of external component (displayed in the editor) whose access path must be specified. A WLanguage error occurs if the name of external component is unknown.
<Access path to component>: Character string
Directory of external component (WDK file). This directory may (or may not) end with a "\". A full path, a relative path or a UNC path can be used.
Remarks

Loading an external component

The load mode of the external component (when starting the project or during the first use of a component element) is defined when the external component is included in the project.
To change the loading mode:
  1. In the "Project explorer" pane:
    • select the "External components" folder.
    • right-click to open the folder context menu
    • select "List of external components imported into the project".
  2. In the window that appears, select the desired external component and click "Description".
  3. Modify the load mode ("Load mode of component").
Reminder: The following events are executed when an external component is loaded:
  • declaration event of the classes of the component.
  • declaration event of the sets of procedures of the component.
  • initialization event of the component.

Finding the external component to load

When loading the external component, the external component will be sought:
  • first, in the directory specified in the <Component directory> of ComponentLoad.
  • then, in the directory specified in <Component directory> of ComponentLocate.
  • then, in the directory specified in "<Component name>.INI". For more details on this file, see Deploying an application that uses an external component.
  • finally, in the EXE directory of the project.
Component: wd290vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help