List View Scroll Bar
-
Hi, i'd like to know if there's a property to cause the scroll bar in the listview to always be down, "autoscroll" Like whenever a new item is added the scroll bar goes with the new item ant Suggestions?? THANKS :)
Have Fun Never forget it
-
Hi, i'd like to know if there's a property to cause the scroll bar in the listview to always be down, "autoscroll" Like whenever a new item is added the scroll bar goes with the new item ant Suggestions?? THANKS :)
Have Fun Never forget it
Do you mean that you want the list view to automatically scroll to the item you've just added? If so, you need to use the following code:
ListViewItem lv = this.listView1.Items.Add(new ListViewItem("new item")); lv.Selected = true; lv.Focused = true; listView1.TopItem = lv;
HTHIt definitely isn't definatley