I have items in a listbox control that I would like to repeatedly (when it gets to the last one, repeat) loop through and set the text to a label.

I'm stuck, please help!

link|improve this question

33% accept rate
Could you tell us how often you want this to repeat? Forever? And why? – Matthew Jones Jun 16 '09 at 21:57
I'd like it to repeat forever. Think of it like a marquee news banner - I want to cycle the latest headlines repeatedly and set the headlines to a label. The headlines would be in the listbox control. Thanks! – Josh streit Jun 16 '09 at 21:59
feedback

2 Answers

Not sure what you are trying to achieve, but the following method will continuously cycle through the items of the given ListBox, displaying the values in the given Label control, going back from the start when it reaches the end, refreshing twice a second (C# code):

private int _currentIndex = -1;
private void ShowNextItem(ListBox listBox, Label label)
{
    // advance the current index one step, and reset it to 0 if it
    // is beyond the number of items in the list
    _currentIndex++;
    if (_currentIndex >= listBox.Items.Count)
    {
        _currentIndex = 0;
    }

    label.Text = listBox.Items[_currentIndex].ToString();

    // get a thread from the thread pool that waits around for a given
    // time and then calls this method again
    ThreadPool.QueueUserWorkItem((state) =>
    {
        Thread.Sleep(500);
        this.Invoke(new Action<ListBox, Label>(ShowNextItem), listBox, label);
    });
}

Call it like this:

ShowNextItem(myListBox, myLabel);
link|improve this answer
Fredrik, tack så mycket! :) Worked flawlessly! – Josh streit Jun 16 '09 at 22:18
You are welcome / ingen orsak :o) – Fredrik Mörk Jun 16 '09 at 22:20
feedback

Sounds like you need to be using eventing rather than polling in a loop. More details are needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.