2015-02-23 57 views
-1

我正在做一個計算廚房材料的項目,當我把措施,我有很多文本框排列3箱每行。將6個文本框的值添加到3行和2列的datagridview中?

但我不能完成代碼傳輸結果,因爲它是datagridview只有一行填充,但我想傳輸所有這些數據的第一行第二行。

代碼我已經試過是:

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click 
     Dim ssql As String = "INSERT INTO kitchen (عدد,نوع) VALUES(@عدد,نوع)" 
     command.Connection = con 
     command.CommandType = CommandType.Text 
     command.CommandText = ssql 
     command.Parameters.AddWithValue("عدد", number.Text) 
     ' command.Parameters.AddWithValue("عدد", number1.Text) 
     ' command.Parameters.AddWithValue("عدد", number2.Text) 
     ' command.Parameters.AddWithValue("نوع", kind.Text) 
     ' command.Parameters.AddWithValue("نوع", kind1.Text) 
     command.Parameters.AddWithValue("نوع", kind2.Text) 
     command.Parameters.AddWithValue("مقاس الالمونيوم", measure.Text) 
     command.ExecuteNonQuery() 
     RefreshData() 
    End Sub 
  • 數據庫:MS訪問2013
  • 的Visual Studio 2013
+0

是否有人? – 2015-02-24 14:15:47

回答

0

我改變數據庫到SQL Server 2014和它的完成工作完美

insert into table statement在sql server上更好地工作

相關問題