HOME > .NET Framework > Forum > vb2008 ทำการอัพเดทข้อมูลจาก Gridview แล้วโปรแกรมแจ้งข้อผิดพลาดว่า Object reference not set to an instance of an object. ใช้ฐานข้อมูล ms sql server 2005
vb2008 ทำการอัพเดทข้อมูลจาก Gridview แล้วโปรแกรมแจ้งข้อผิดพลาดว่า Object reference not set to an instance of an object. ใช้ฐานข้อมูล ms sql server 2005
If txt_Hun_to1.Text = "" Then
MessageBox.Show("กรุณาคำนวณเงินปันผลก่อนครับ !!!", "ผลการตรวจสอบ", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Exit Sub
End If
If MessageBox.Show("คุณต้องการบันทึกข้อมูลการปันผล ใช่หรือไม่?", "คำยืนยัน", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Yes Then
Dim sqlUp As String = ""
Dim i As Integer = 0
For i = 0 To dgv_DetailAtmitTubAll.Rows.Count - 1
sb.Remove(0, sb.Length)
sb.Append("UPDATE tbMember SET share_total='" & dgv_DetailAtmitTubAll.Rows(i).Cells(2).Value.ToString & "'")
sb.Append(" WHERE Mem_id='" & dgv_DetailAtmitTubAll.Rows(i).Cells(0).Value.ToString & "'")
sqlUp = sb.ToString()
com = New SqlCommand
With com
.CommandText = sqlUp
.CommandType = CommandType.Text
.Connection = Conn
.ExecuteNonQuery()
End With
Next
MessageBox.Show("บันทึกข้อมูลเงินปันผลเรียบร้อยแล้วครับ!!!", "ผลการทำงาน", MessageBoxButtons.OKCancel, MessageBoxIcon.Information)
End If