I have a ListView and I do some select on the selected change event
private void seleccionarIndexEnLista(int i)
{
lstvClientes.Items[i].Selected = true;
lstvClientes.Items[i].Focused = true;
}
but if the selected item is out of the view and gets selected, the scrollbar doesn't move, so I don't see that it is selected until I move the scrollbar.
Can I move the scrollbar when I do the select in the code to fix this?