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 / Miscellaneous WINDEV functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Loads a library of WINDEV objects in memory (.WDL). This function is used to:
  • use custom libraries for each user. This allows you to create several libraries and to install one of these libraries according to the user.
  • divide a "large" library into several "smaller' libraries, loaded upon request.
This library will be loaded in memory until:
WEBDEV - Server code The use of this function is not recommended. We recommend using components that are easier to use. For more details, see External components.
// Project initialization code
// The library depends on the user
LibraryName, User are strings
hWDL_ is int
User = CommandLine("User")
SWITCH User
	CASE User1: BibliName = "USER1.WDL"
	CASE User2: BibliName = "USER2.WDL".
	CASE User3: LibraryName = "USER3.WDL".
END
hWDL_ = LoadWDL(LibraryName)
Syntax
<Result> = LoadWDL(<Library name>)
<Result>: Integer
  • Identification number (handle) of the library
  • -1 if the library failed to be loaded.
<Library name>: Character string
Name and full (or relative) path of the library to load.
Component: wd300vm.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/01/2025

Send a report | Local help