Synchronized ListBoxes I have created a test app that has 2 ListBoxes where the ListBoxItems move with each other. It works but has an oddity. If the right side ListBoxItem (lbi) is out of view when the corresponding left side lbi is selected then the right side lbi move into view at the top or bottom of the right side box, but not aligned with the left side lbi. I can work with this in my app but is not user-friendly. Does anyone have any suggestions on avoiding an offset? The pas code: unit LBTest; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls, FMX.Controls.Presentation, FMX.Layouts, FMX.ListBox; type TForm1 = class(TForm) lb1: TListBox; pnl1: TPanel; lb2: TListBox; btn1: TButton; procedure btn1Click(Sender: TObject); procedure lb2Change(Sender: TObject); procedure lb1Change(Sender: TObject); procedure lb1MouseWheel(Sende...