Hi, pat capozzi
Try something like this:
d = 63.5;
this.comboBox3.Items.Add("aa");
this.comboBox3.Items.Add(1);
this.comboBox3.Items.Add(d);
this.comboBox3.SelectedItem = d;
//this.comboBox3.SelectedItem = 1;
//this.comboBox3.SelectedItem = "aa";
Hope it helps.
Best Regards.
Ye