Page 1 of 1

สอบถามการย้าย DataGridview1 to DataGridview2

Posted: Sat Mar 31, 2018 4:29 pm
by nutpopo
มัน ติดตรง Rows.add ครับ เพราผม and ฐานข้อมูล Access เข้ามาแบบอัตโนมัติ จึงใช้ Rows.add ไม่ได้
พอจะมีแนวทาง หรือ ตัวอย่างให้ดูมัยครับ

Code: Select all

 For i As Integer = 0 To PRODUCTIONDataGridView.Rows.Count() - 1 Step +1
            Dim rowAlreadyExist As Boolean = False
            Dim check As Boolean = PRODUCTIONDataGridView.Rows(i).Cells(3).Value
            Dim row As DataGridViewRow = PRODUCTIONDataGridView.Rows(i)
            If check = True Then
                If IN_PRODUCTIONDataGridView.Rows.Count() > 0 Then
                    For j As Integer = 0 To IN_PRODUCTIONDataGridView.Rows.Count() - 1 Step +1
                        If row.Cells(0).Value.ToString() = IN_PRODUCTIONDataGridView.Rows(j).Cells(0).Value.ToString() Then
                            rowAlreadyExist = True
                            Exit For
                        End If
                    Next
                    If rowAlreadyExist = False Then
                        IN_PRODUCTIONDataGridView.Rows.Add(row.Cells(0).Value.ToString(),
                                               row.Cells(1).Value.ToString(),
                                               row.Cells(2).Value.ToString(),
                                              row.Cells(3).Value)
                    End If
                Else
                    IN_PRODUCTIONBindingSource.AddNew()
                    IN_PRODUCTIONDataGridView.Rows.Add(row.Cells(0).Value.ToString(),
                     row.Cells(1).Value.ToString(),
                     row.Cells(2).Value.ToString(),
                     row.Cells(3).Value)
                End If
            End If
        Next

Re: สอบถามการย้าย DataGridview1 to DataGridview2

Posted: Sat Mar 31, 2018 5:17 pm
by snasui
:D สำหรับตัวอย่างการดึงข้อมูลจาก Access มาใส่ใน DataGridView ลองดู Link พวกนี้ครับ VB.Net Retrieve data from Access to DataGridView