Hi,
Welcome to the MSDN forums.
A simple way to do this would be to use EnsureVisible(). So let us say you want the scroll to go to item 20
ListView1.Items[21].EnsureVisible();
or
ListView1.EnsureVisible(21);
HTH,
Suprotim Agarwal
Hi,
Welcome to the MSDN forums.
A simple way to do this would be to use EnsureVisible(). So let us say you want the scroll to go to item 20
ListView1.Items[21].EnsureVisible();
or
ListView1.EnsureVisible(21);
HTH,
Suprotim Agarwal