ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Windows functions that can be handled by the end user
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
Load:
  • the changes made by the end user in a window. These changes have been saved in memory or in a file.
  • the notes created by the end user in a window.
Remark: This function can be used when the "Allow end users to modify the UI" option is allowed for the windows of the application.
Example
// Click on [Save]
WIN_Overview.EdSave("My changes.wdmodif")
 
// Click on [Load]
WIN_Overview.EdLoad("My changes.wdmodif")
IF ErrorOccurred = True THEN
Info("Unable to load" + CR + ErrorInfo())
END
Syntax

Loading the modifications saved in a buffer Hide the details

<Result> = <Window>.EdLoad(<Buffer>)
<Result>: Boolean
  • True if changes were loaded,
  • False if an error occurs. To get more details on the error, use ErrorInfo.
<Window>: Window name
Name of the window or internal window to be used.
<Buffer>: Buffer variable
Buffer containing the changes (previously saved with <Window>.EdSave).

Loading the modifications saved in a file Hide the details

<Result> = <Window>.EdLoad(<File>)
<Result>: Boolean
  • True if changes were loaded,
  • False if an error occurs. To get more details on the error, use ErrorInfo.
<Window>: Window name
Name of the window or internal window to be used.
<File>: Character string
  • Name and full or relative path of the ".wdmodif" file containing the changes made (previously saved with <Window>.EdSave).
  • Name and full or relative path of the ".wdnote" file containing the notes created by the user (the notes have been saved beforehand by WinEdSaveNote).
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help