ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / AAF functions (Automatic Application Features)
  • Saved customizations
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Loads all customizations made via AAFs (Automatic Applications Features) that have previously been saved to a file.
Example
// Clic sur "Importer mes paramètres"
NomFichier is string 
NomFichier = fSelect("", "", "Sélectionnez un fichier...", "paramètres" + ...
	TAB + "*.param" + CR + "Tous les fichiers (*.*)" + ...
	TAB + "*.*", "*.*", fselExist)
IF NomFichier = "" THEN RETURN
AAFImportParameter(NomFichier)
IF ErrorOccurred THEN
	Error()
ELSE
	ToastDisplay("Paramètres importés avec succès.")
END
Syntax
AAFImportParameter(<File to import>)
<File to import>: Character string
Name and full path of the file to which the AAF customizations have been previously saved.
Remarks

Saved customizations

All customizations made by the user are saved:
  • Window sizes and positions,
  • Stored control values,
  • Input history,
  • Custom-notes,
  • Customization of the Dashboard controls,
  • Dockable Panel customization, ...
These parameters can be restored with AAFImportParameter or via the Automatic Application Feature for importing parameters (available in the context menu of a window in the application).
Component: wd300obj.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help