S
shapper
Hello,
I have 2 data sets: dsLevels and dsLevelsSubscribed.
And I created this loop:
For Each row As DataRow In dsLevels.Tables(0).Rows
??? row("LevelName")
Next row
I need to check if there is any row in dsLevelsSubscribed with the
same value in column "LevelName" as in row("LevelName").
If there is, I need to remove the row from dsLevels.
I have been trying to make this work but until now I add no success.
Could someone, please, help me out?
Thanks,
Miguel
I have 2 data sets: dsLevels and dsLevelsSubscribed.
And I created this loop:
For Each row As DataRow In dsLevels.Tables(0).Rows
??? row("LevelName")
Next row
I need to check if there is any row in dsLevelsSubscribed with the
same value in column "LevelName" as in row("LevelName").
If there is, I need to remove the row from dsLevels.
I have been trying to make this work but until now I add no success.
Could someone, please, help me out?
Thanks,
Miguel