ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Developing an application or website / WINDEV executable
  • Overview
  • Re-initializing the parameters
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
Reinitializing the parameters automatically saved
Overview
WINDEV allows you to automatically save the different application parameters:
  • Size and position of the window ("Details" tab of the window description).
  • Size and position of table columns ("Details" tab in the description of Table control, "Store the column configuration"). The stored information is ignored when the context menu is changed (with the ContextMenu property, for example).
  • Size and position of a Toolbar control ("Details" tab in the description window).
This information is saved in the registry, in the information regarding the application.
Remark: If the table is anchored, the size and position of the columns will be actually stored only if the size and position of the window are stored.
Re-initializing the parameters
To reinitialize the application parameters (in the initialization code of application for example), you must:
  1. Find the registry key corresponding to the application. This information is returned by ProjectInfo.
  2. Delete this registry key (RegistryDeleteKey).
For example:
ProjectConfig is string = ProjectInfo(piRegistry)
RegistryDeleteKey(ProjectConfig)
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 06/12/2023

Send a report | Local help