Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've a method which fill a combobox. (compact framework 3.5)

lstNiveaux.BeginUpdate();
lstNiveaux.Items.Clear();
for (int i = 0; i < list.Count; i++)
{
  var item = new ListViewItem(list[i].value);
  lstNiveaux.Items.Add(item);
}
lstNiveaux.EndUpdate();

I want to do :

lstNiveaux.Items[10].Selected = true;
lstNiveaux.EnsureVisible(10);

When I write that piece of code at the end of the previous method, it won't work but ... if I put a button with a click event, and the piece of code inside, it will work.

I tryied Application.DoEvents, Thread.Sleep and other stuff but no work. Does someone has a solution ?

regards

share|improve this question
do you populate the combobox in a separate thread or in the main GUI thread? – ytg Nov 10 '11 at 7:13
in the main gui thread – P. Sohm Nov 10 '11 at 14:05
does someone has a solution ? – P. Sohm Nov 16 '11 at 13:17
my best idea is to write a method and Invoke it, but it's too silly to write it down in an answer – ytg Nov 16 '11 at 18:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.