MaxPayne

MaxPayne

  • NA
  • 18
  • 17.6k

compare two columns contents from two tables

Jul 31 2012 7:46 AM
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)