You need to change a few things,
1)
<< uncomment that out.
2)
comboBox1.ValueMember = "id";
should be
comboBox1.ValueMember = "name";
3)I think you need to change the binding from:
new Binding("Text", comboBox1, "Text");
to:
new Binding("Text", comboBox1, "SelectedValue");