Insert into listview, new entry at top

  • Thread starter Thread starter Tee
  • Start date Start date
T

Tee

Hi,

Can anyone tell me how to insert new row to listview and newest data at top?

Thanks,
Tee
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top