A ashraffarid Member Licensed User Longtime User Jul 30, 2019 #1 Hi all i use horizontal xCustomListView when i add items it added from left to right ,i want to add it from right to left and i want to get focus on specific item by code thanks
Hi all i use horizontal xCustomListView when i add items it added from left to right ,i want to add it from right to left and i want to get focus on specific item by code thanks
Erel B4X founder Staff member Licensed User Longtime User Jul 30, 2019 #2 ashraffarid said: it added from left to right ,i want to add it from right to left Click to expand... Use clv.InsertAt(0, ...) instead of clv.Add. ashraffarid said: and i want to get focus on specific item by code Click to expand... clv.JumpToItem or clv.ScrollToItem. Upvote 0
ashraffarid said: it added from left to right ,i want to add it from right to left Click to expand... Use clv.InsertAt(0, ...) instead of clv.Add. ashraffarid said: and i want to get focus on specific item by code Click to expand... clv.JumpToItem or clv.ScrollToItem.
A ashraffarid Member Licensed User Longtime User Jul 30, 2019 #3 Thanks Erel .... inset(0,... worked but ScrollToItem or jumptoitem not work Last edited: Jul 30, 2019 Upvote 0