Table of Contents

Getting Started with TMS FNC Spinner

Prerequisites

  • Delphi with TMS FNC UI Pack installed.
  • A new or existing VCL, FMX, or WEB application.

Steps

  1. Drop a TTMSFNCSpinner onto a form.
  2. Add columns via Columns.Add; for each column set RangeType (rtNumber, rtDateTime, or rtCustom) and configure the matching range — RangeFrom/RangeTo/Step/ValueFormat for numeric, DateRangeFrom/DateRangeTo/StepType/DateTimeValueFormat for date/time, or CustomItems for a custom list.
  3. Handle OnSelectedValueChanged to read the selection with Columns[i].SelectedValue.

Next steps