Hello
Im working with ListView
in C#.NET.
Im using code similar to this:
string[] row1 = { "s1", "s2", "s3" };
listView1.Items.Add("Column1Text").SubItems.AddRange(row1);
However I can't see the content, only the name of the column. Why is this?