Table of Contents

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

  1. Drop TTMSFNCAppFormPersist from the palette onto a form.
  2. Set the FileName property to the INI file path where position data will be stored.
  3. Optionally set UseUserName and UseMachineName to True to 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.