F funcoder Member Licensed User Longtime User Jul 18, 2011 #1 Hi I have a list view made up of AddTwoLinesAndBitmap and I need to be able to update the second line of text. How can I do this? Thanks Jonathan
Hi I have a list view made up of AddTwoLinesAndBitmap and I need to be able to update the second line of text. How can I do this? Thanks Jonathan
Harris Expert Licensed User Longtime User Jul 18, 2011 #2 Dim LV1 As ListView ..... ..... LV1.TwoLinesLayout.SecondLabel = "whatever you want" Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Jul 19, 2011 #3 Actually LV1.TwoLinesLayout.SecondLabel only allows you to change the label layout. The value of the second line is set when you add the item. If you want to change it you will need to remove the item and add a new item instead. Upvote 0
Actually LV1.TwoLinesLayout.SecondLabel only allows you to change the label layout. The value of the second line is set when you add the item. If you want to change it you will need to remove the item and add a new item instead.