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!
feedback
|
|
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):
Call it like this:
| |||||
|
feedback
|
|
Sounds like you need to be using eventing rather than polling in a loop. More details are needed. | |||
|
feedback
|