Getting started with TMS FNC App Form Persist
Prerequisites
- TMS FNC Core installed and the runtime package added to the project.
- TMS FNC AppTools installed.
Add the component
- Drop
TTMSFNCAppFormPersistfrom the palette onto a form. - Set the
FileNameproperty to the INI file path where position data will be stored. - Optionally set
UseUserNameandUseMachineNametoTrueto create per-user or per-machine INI sections.
Save and restore position
The component saves the form's position and size automatically. To trigger persistence manually:
{ Inside your form's OnClose or OnDestroy event: }
AppFormPersist1.SaveFormSettings;
{ Inside your form's OnCreate or OnShow event: }
AppFormPersist1.LoadFormSettings;
Next steps
- Guides — file naming, per-user sections, and multi-monitor tips.
- API reference — full class reference.