ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / AAF functions (Automatic Application Features)
  • Saved customizations
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
Saves all customizations made via AAFs (Automatic Application Features) in a file.
Example
// Click on "Export my parameters..."
FileName is string
FileName = fSelect("", "", "Select a file...", ...
"parameters" + TAB + "*.param" + CR + ...
"All files (*.*)" + TAB + "*.*", "*.*", fselCreate + fselExist)
IF FileName = "" THEN RETURN
AAFExportParameter(FileName)
IF ErrorOccurred THEN
Error()
ELSE
ToastDisplay("Parameters exported in" + CR + FileName)
// Open the directory
ShellExecute(fExtractPath(FileName, fDrive + fDirectory))
END
Syntax
AAFExportParameter(<Export file>)
<Export file>: Character string
Name and full path of the file to which the AAF customizations will be 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: wd290obj.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help