D darabon Active Member Sep 5, 2021 #1 I can detect the end of the list with ReachEnd event for CustomListView But I need to detect end of list when 3 rows remain be end Maybe?
I can detect the end of the list with ReachEnd event for CustomListView But I need to detect end of list when 3 rows remain be end Maybe?
Erel B4X founder Staff member Licensed User Longtime User Sep 6, 2021 #2 Use the VisibleRangeChanged event and compare LastIndex to CLV.Size. Upvote 0
D darabon Active Member Sep 6, 2021 #3 Erel said: Use the VisibleRangeChanged event and compare LastIndex to CLV.Size. Click to expand... My solution: If LastIndex >= CLV.Size-4 Then Thanks Erel Upvote 0
Erel said: Use the VisibleRangeChanged event and compare LastIndex to CLV.Size. Click to expand... My solution: If LastIndex >= CLV.Size-4 Then Thanks Erel