3
Answers

compare two columns contents from two tables

Photo of MaxPayne

MaxPayne

13y
3.3k
1
I want to compare two tables column contents if the contents are same show message

the following code only check if records exist
if (dtBu.Rows.Count > 0 && dtConsignee.Rows.Count > 0)
                  {
                      showMessage("We have same data");
                  }

                    

Answers (3)

Next Recommended Forum