Opps. Sorry for the wrong example...
Christopher is right, a strongly types DataSet is a good way to go.
If you want just a simple databinding, you can load the SqlReader into a DataTable and use it as the DataSource.
System.Data.
DataTable dt = new System.Data.DataTable();
dt.Load(reader);
comboBox1.DataSource = dt;