Hi, there are some issues with TsListView component:
– OnAdvancedCustomDrawItem event is not saved in the project. Everytime I open the delphi project, I must reassign manually the event function;
– This piece of code works well with the traditional TListView component, but not with TsListView (it returns always false):
var
ScrollInfo : TScrollInfo;
…
ScrollInfo.fMask := SIF_ALL;
if GetScrollInfo(MyTsListView.Handle, SB_HORZ, ScrollInfo) Then …