0

dnddatatableとdtdupという名前の2つのデータテーブルを使用しています。電話番号のセットが含まれています。2番目のデータテーブルを最初のデータテーブルと比較し、2番目のデータテーブル名as(dtdup)と等しいdatatable1(name as dnddatatable)値から値を削除したいと思います。

data in the datatable as follows.

dnddatatable(data table1)

phone
9865015695
9840903331 
98668625
800971868
809679532
837445478

dtdup(dtata table2)

phone_numbers
9865015695
9840903331 

result dnddatatable(data table1)

98668625
800971868
809679532
837445478 
4

1 に答える 1

1

私はかなり前にかなり似た質問に答えました、考えはまったく同じです

For i As Integer = 0 To dataset.Tables(0).Rows.Count - 1
        Dim found As Boolean = False
        For j As Integer = 0 To dataset1.Tables(0).Rows.Count - 1
            If dataset.Tables(0).Rows(i)(0).ToString = dataset1.Tables(0).Rows(j)    (0).ToString Then
                found = True
            End If
        Next
        If found = False Then
            'here you are getting the right result in each loop
            'in this example i'm showing the result in a textbox
            'just change the instruction and write them in your note pad or wherever you want to
            MsgBox(dataset.Tables(0).Rows(i)(0).ToString)
        End If
    Next
于 2012-12-13T21:33:33.657 に答える