Thanks in advance.
Comparing 2 grids
I have 2 datagrids in my form and each of them has over 8000 rows. There is only 1 common column which is numeric. And I want to compare those 2 grids via this numeric colum. There are 6 columns to be compared. What would be the fastest way to do it? I tried to filter 2nd grid for each row in 1st grid, it does what I wanna do but very slow. It takes like 5 mins. I wanna be able to do it much faster, like within 2 mins if it's possible.
ozzyPosted Apr 12, 2010, 1:39 AM
Sam HobbsPosted Apr 11, 2010, 1:21 PM
If the data is not in tables, then you can put the data into tables to compare the data or you could put the data into collections to compare. You might be able to use LINQ to help do the compare but I don't yet understand LINQ well enough to help with that.
VasanthPosted Apr 11, 2010, 9:46 AM