blah blah blah is here! blah blah » Close

1
votes
1 answers

how to use a for each to determine whether each list item is checked

[code]List<string> checks = new ListBox<string>(); foreach (Control c in this.panAll.Controls) { if (c is ListItem) { if (((ListItem)c).???? == checked))) { checks.add(&quo ...

0
votes
1 answers

Different color for each listbox item

Howdy, Please help me. I wonder how to give a different color for each listbox item. I've try to make a short line of code to handle that but it was failed. [code] if(this.listBox1.InvokeRequired==true){ this.listB ...

Feedback