Is it possible to update the Name string of a specific TStringList name / value pair?
List.Names[I]:= name;
I know that names are a readonly property, I was wondering if there is another way that I don't know about?
Or do I need to do a full update of the entire line
List[I]:= name=value
the problem is that I store a large number of string values ββin the value part of the name / value pair
Example
name=value1,value2,value3,value4,value5,value6,value7,value8,value9,value10
I would rather just update the name part 9, because all I need to do)
thanks
source share