我在將存儲過程加載到DataGridView時遇到問題。我搜索了一個答案,但是我的代碼看起來與我找到的每個答案都相似。該存儲過程在我添加的另一個DataGridView中運行,我將它作爲一個固定的數據源包含在其中。我是C#的新手。任何人都可以看到我要去哪裏嗎?從存儲過程中加載DataGridView
private void Form1_Load(object sender, EventArgs e)
{
DataTable dt = new DataTable();
SqlConnection myConn = new SqlConnection("Data Source=SERVER-SQL1;Initial Catalog=OPSystem;Integrated Security=True");
myConn.Open();
SqlCommand myCmd = new SqlCommand("spCustomers", myConn);
myCmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter(myCmd);
da.Fill(dt);
dataGridView1.DataSource = da;
}
什麼是this.iTManagementSystemDataSet?它似乎沒有在Form's Load事件中初始化。 – ManoDestra
對不起,這是從我的代碼中刪除,我編輯了我的帖子。 – CodeRanger