我正在使用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;
您可以定義 「它不工作」?沒有顯示在網格中,或者是否有錯誤。如果出現錯誤,請將其編輯到您的問題中。 – LarsTech 2012-01-17 20:02:36
DataBindingComplete事件是否正在觸發? – NicoRiff 2012-01-17 20:03:21