I have hundreds of lines to show, i take them from a File that i put in a list. I have another File with comments in it. Sometimes i want to insert a comment from this second file but i want the comment text to appear much smaller then the main lines.
For i =0 to liste.size-1
mot=liste.get(i)
CLVPerso.AddTextItem(mot,mot) ' this text is size 20 its the main one
for x=0 to filecomment.size-1
comment=filecomment.get(i)
if blablabla then
ClvPerso.addtextitem(comment, comment) ' i would love this line to appear with smaller text in the listview like size 10
end if
next
next