I am Attempting to add data to a listview control......I know how to add the data if I have all the datta at the same time...but I need to add data at different times......
so this works if I know the data ....
how do I add data to the same listView at different times and to different subitems.....if that makes any sence...
thank you
-InkedGFX
so this works if I know the data ....
ListViewitem lvi = new ListViewItem(data); lvi.Subitems.Add(data); lvi.SubItems.Add(data); listView1.Items.Add(lvi);
how do I add data to the same listView at different times and to different subitems.....if that makes any sence...
thank you
-InkedGFX