Hello, i have just a simple question.
Is there a way to select the next item in a listview by pressing a button? I have been using listbox for along time now and its pretty easy to do there

ListBox1.SelectedIndex = ListBox1.SelectedIndex + 1

, any idea how to do it in a listview?

Thanks :)

Try this...

ListView1.Items(<index>).Selected = True
ListView1.Select() 'Important line
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.