7.07 TsListView problems

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #33985
    Mark Zackie
    Participant

    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 …

    #43397
    Support
    Keymaster

    Hello

    – Problem with OnAdvancedCustomDrawItem event must be solved in the version 7.08

    – Thank you for example code. You have ScrollInfo.cbSize initialized before GetScrollInfo calling? I haven't a problem if this line is added : ScrollInfo.cbSize := SizeOf(ScrollInfo);

    #43410
    Mark Zackie
    Participant

    many thanks, it's works fine now! 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.