T Tee Oct 9, 2004 #1 Hi, Can anyone tell me how to insert new row to listview and newest data at top? Thanks, Tee
G Ged Mead Oct 9, 2004 #2 One way you can use is this: With ListView1 ..Items(0).Text = "New color" ..Items.Item(0).SubItems.Add("New sub Color") ' etc End With
One way you can use is this: With ListView1 ..Items(0).Text = "New color" ..Items.Item(0).SubItems.Add("New sub Color") ' etc End With
S Shiva Oct 9, 2004 #3 ListView.Items.Insert (0, "New Item") Hi, Can anyone tell me how to insert new row to listview and newest data at top? Thanks, Tee
ListView.Items.Insert (0, "New Item") Hi, Can anyone tell me how to insert new row to listview and newest data at top? Thanks, Tee