3
Answers

compare two columns contents from two tables

MaxPayne

MaxPayne

12y
3.2k
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