How do I do this in Delphi ?
How do I do this in Delphi ?
If you use a version higher than Delphi XE 8, click on the events of listview1 and then click on the event OnScrollViewChange
and add the following code:
Listview2.ScrollViewPos := Listview1.ScrollViewPos;
Once you've made it into List 1, list 2 will scrool to the same location as the first.