Dim MyList As List
MyList.Initialize
MyList = Array ("Apple", "Banana", "Cherry", "Coconut", "Grapes", "Lemon", "Mango", "Melon", _
"This is a long sentence that will be fully included in the xCLV since we are using the AddTextItem method", _
"Orange", "Pear", "Pineapple", "Strawberry", "Litchi", "Watermelon", "Tomatoes", "Cherries", "Grapefruit" , _
"Dates", "Berries", "Raisins", "Pomegranate" )
MyList.SortCaseInsensitive(True)
For Each s As String In MyList
clv.AddTextItem(s, s)
Next