W
Wade Matveyenko
I am using the 1.1 framework. I have a ListBox with the
sorted property set to true. I try to add one item to
the list and the item does not display. If I add two
items, the first item and the second item displays. The
code I use to add the items to the list box look like
this:
private void button1_Click(object sender,
System.EventArgs e)
{
this.listBox1.BeginUpdate();
this.listBox1.Items.Add("blah blah blah");
this.listBox1.EndUpdate();
}
Thanks,
Wade Matveyenko
sorted property set to true. I try to add one item to
the list and the item does not display. If I add two
items, the first item and the second item displays. The
code I use to add the items to the list box look like
this:
private void button1_Click(object sender,
System.EventArgs e)
{
this.listBox1.BeginUpdate();
this.listBox1.Items.Add("blah blah blah");
this.listBox1.EndUpdate();
}
Thanks,
Wade Matveyenko