1
vote
How to prevent ListBox.SelectedIndexChanged event?
You can populate the listbox using lb.Items.AddRange() instead of setting the datasource. In addition to not triggering the SelectedIndexChanged, this also won't pre-select the first item.
…
3
votes
How can I programmatically make certain parts of a label, in a windows form, bold?
http://stackoverflow.com/questions/11311/formatting-text-in-winform-label
…
