OK. I'm getting a little closer...
with:
begin
ValueListEditor1.InsertRow('a','1',true);
ValueListEditor1.InsertRow('b','2',true);
ValueListEditor1.InsertRow('c','3',true);
end;
I get:
[Key ][Name ]
[a ][1 ]
[b ][2 ]
[c ][3 ]
Good so far... But If I try to clear and reload with:
begin
ValueListEditor1.clear;
ValueListEditor1.Row := 0;
ValueListEditor1.InsertRow('a','1',true);
ValueListEditor1.InsertRow('b','2',true);
ValueListEditor1.InsertRow('c','3',true);
end;
then I get:
[b ][2 ]
[a ][1 ]
[c ][3 ]
How/why did my second InsertRow() replace the column headings? I'm missing something here.
I'm struggling to find documentation to help me with the basic use of the control. Where should I be looking for documentation?