Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hi

how to move the list box Scroll Down automaticallty in c#.
Posted
Comments
Sergey Alexandrovich Kryukov 17-Feb-14 2:53am    
When you say "ListBox", the question is: which one? Full type name, please. And what's the problem?
—SA
rahuls1 17-Feb-14 6:05am    
List Box Controll i am updadting the List box on Background process i neet to See the UpdateList box so i want list box shoul AutoScroll DownWard to See last Udated Content in it.

If you are using .NET FrameWork 3.0 or later, and Windows Forms, use ListBox.ScrollIntoView: [^].
 
Share this answer
 
ListBox.SelectedIndex = ListBox.Items.Count - 1;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900