ผมกำลังทำให้ปุ่ม ที่ผมเพิ่มไปใน Datagridview เพื่อ update ข้อมูลที่มีการแก้ไข ไปยัง Sql server ครับ
Tag : .NET, Ms SQL Server 2005, VBScript, Win (Windows App), VB.NET
Date :
2018-01-24 13:11:27
By :
timesurfer
View :
817
Reply :
1
No. 1
Guest
Code (VB.NET)
For Each row as DataGridViewRow In DataGridView1.row
If row.Cells(0).Value <> string.emptry Then
' SQL UPDATE SET Column1 = '" & row.Cells(1).Value & "' WHERE ID = " & row.Cells(0).Value
end if
Next
'นำไปปรับแต่งเอาตามชอบในครับ