tags:

views:

14

answers:

2

How do I programmatically scroll to the first checked item in a CheckedListBox?

+2  A: 

Use TopIndex property: http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.topindex.aspx

František Žiačik
Thanks! I'm having a juvenile alzheimer's day today...
code4life
+2  A: 

Maybe the ListBox.TopIndex property helps here:

Gets or sets the index of the first visible item in the ListBox.

tanascius
+1.......... Thanks!
code4life