> As more items are added to the list it eventually reveals its vertical
> scrollbar and the items at the bottom of the list are not visible. Is
> there a way to have the list scroll automatically to the last added
> item so I can visually see what is being added?
Any time you add an item, you can call:
listView.EnsureVisible(listView.Items.Count - 1);
listView.Update();
Marc
davebythesea - 21 Aug 2007 10:54 GMT
> > As more items are added to the list it eventually reveals its vertical
> > scrollbar and the items at the bottom of the list are not visible. Is
[quoted text clipped - 6 lines]
>
> Marc
Hi Marc,
Thanks very much, I'll try that!
David
davebythesea - 21 Aug 2007 12:20 GMT