T
Teis Draiby
In order to show the names of the objects added to the ComboBox I've set:
sausageChooserCombo.ValueMember = "Name";
- but when I change the "Name"-property on the objects, the ComboBox does
not update accordingly - it still shows the initial names... I've tried
this:
comboBox1.Refresh();
comboBox1.Update();
The objects are added manually to the ComboBox like this:
comboBox1.Items.Add(newObject);
The DropDownStyle is set to "DropDownList".
Any help is appreciated,
Thanks, Teis
sausageChooserCombo.ValueMember = "Name";
- but when I change the "Name"-property on the objects, the ComboBox does
not update accordingly - it still shows the initial names... I've tried
this:
comboBox1.Refresh();
comboBox1.Update();
The objects are added manually to the ComboBox like this:
comboBox1.Items.Add(newObject);
The DropDownStyle is set to "DropDownList".
Any help is appreciated,
Thanks, Teis