2012-01-17 157 views
1

我正在使用winforms項目,並且我在Form_Load方法中有以下代碼。但它不起作用。誰能幫我?DataGridView綁定不起作用

SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Sella.Properties.Settings.Database1ConnectionString1"].ConnectionString); 
// A SqlCommand object is used to execute the SQL commands. 
SqlCommand scmd = new SqlCommand("Select * From CustCalls", conn); 
// A SqlDataAdapter uses the SqlCommand object to fill a DataSet. 
SqlDataAdapter sda = new SqlDataAdapter(scmd); 
// Create and Fill a new DataSet. 
DataSet ds = new DataSet(); 
sda.Fill(ds); 

dataGridView1.DataSource = ds; 
+1

您可以定義 「它不工作」?沒有顯示在網格中,或者是否有錯誤。如果出現錯誤,請將其編輯到您的問題中。 – LarsTech 2012-01-17 20:02:36

+0

DataBindingComplete事件是否正在觸發? – NicoRiff 2012-01-17 20:03:21

回答

2

嘗試採購直接到數據集中的表:

dataGridView1.DataSource = ds.Tables[0]; 
0
SqlDataAdapter sda = new SqlDataAdapter(scmd, conn); 

dataTable dt = new DataTable(); 

sda.Fill(dt); 

dataGridView1.DataSource = dt; 
+0

它更好地描述你的答案一點 – 2012-10-20 06:46:08