نمایش اطلاعات یک ستون از دیتابیس در یک کمبو باکس

OleDbDataAdapter da = new OleDbDataAdapter("select * from tb", cd.sqcon);
cd.sqcon.Open();
DataSet ds = new DataSet();
cd.sqcon.Close();
da.Fill(ds, "tb");
comboBox1.DisplayMember = "nam";
comboBox1.ValueMember = "id";
comboBox1.DataSource = ds.Tables["tb"];

تست شده در VS2013