Updating Second line of TwoLinesAndBitmap

funcoder

Member
Licensed User
Longtime User
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
Dim LV1 As ListView
.....
.....

LV1.TwoLinesLayout.SecondLabel = "whatever you want"
 
Upvote 0
Top