Creating an item(Under the key) is easy,but how to add subitems(Value)?
listView1.Columns.Add(\"Key\"); listView1.Columns.Add(\"Value\"); listView1.Items.Add
Great !! It has helped me a lot. I used to do the same using VB6 but now it is completely different. we should add this
listView1.View = System.Windows.Forms.View.Details; listView1.GridLines = true; listView1.FullRowSelect = true;