我有一个DataGridView
,其中有一些来自数据库的数据。我想用这些数据添加更多列,
我的意思是,我有PONO,CreatedDate,Deliverydata,orderedqty,ItemCode等列。现在我需要添加3个列标题并使用相同的数据进行编辑。第一列是,receiveqty,第二列是TotalValueRecieved,第三列是Accept(复选框)。我想在数据库中更新它。
我如何添加这些列?
这是我的datagridview搜索代码。我还有什么要写的。请帮我。
Public Sub SelectPONO()
Try
Dim strSQL As String = "SELECT PONo as 'PO Number',CreatedDate as 'Created Date',DeliveryDate as 'Delivery Date', OrderedQty as 'Ordered Qty',ItemCode as 'Item Code',Price as 'Price' FROM tblPurchaseOrder WHERE PONo='" & txtPONo.Text & "'"
Dim ds As DataTable = sql.FillDataSet(strSQL)
dgvPODetails.DataSource = ds
'DataGridView2.Columns(3).Visible = False
' sql.SqlConn.Close()
Catch ex As SqlException
MsgBox(ex.Message, MsgBoxStyle.Critical, "SQL Error")
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, "General Error")
End Try
End Sub