In a "standard" CLV with LL application, I notice that the subroutine "clv1_VisibleRangeChanged (FirstIndex As Int, LastIndex As Int)" is launched as many times as the number of lines of the "visible" CLV.
For example, for a CLV counting 4 visible items, the subroutine is launched 3 times with :
- FirstIndex= 0 LastIndex= 1
- FirstIndex= 0 LastIndex= 2
- FirstIndex= 0 LastIndex= 3
This is not really an issue but, in my case, for each item, I am loading pictures from an external site and the transfer of these images is relatively long.
My question is : is there a way to avoid these multiple "identical" passes ans consequently these multiple transferts ?
For example, for a CLV counting 4 visible items, the subroutine is launched 3 times with :
- FirstIndex= 0 LastIndex= 1
- FirstIndex= 0 LastIndex= 2
- FirstIndex= 0 LastIndex= 3
This is not really an issue but, in my case, for each item, I am loading pictures from an external site and the transfer of these images is relatively long.
My question is : is there a way to avoid these multiple "identical" passes ans consequently these multiple transferts ?