AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones FAA (Automatic Application Features)
  • Saved customizations
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Loads all customizations made via AAFs (Automatic Applications Features) that have previously been saved to a file.
Ejemplo
// 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
Sintaxis
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.
Observaciones

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).
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 24
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local