1. 程式人生 > >ComboBox繫結資料庫

ComboBox繫結資料庫

//宣告一個SQLconnection物件
            SqlConnection sql = new SqlConnection(constr);
            SqlDataAdapter sda = new SqlDataAdapter("select * from Department", sql);
            DataSet ds = new DataSet();
            sda.Fill(ds, "DeptName");//資料庫列名
            comboBox1.DataSource = ds.Tables["DeptName"];//資料庫列名

            comboBox1.DisplayMember = "DeptName";//資料庫列名