Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Problem

error no row at position 4 when compare two datatable and remove similar unitcode .

why this error and how to solve it

  <pre lang="c#">if (dtwrongvaluesFinal.Rows.Count > 0)
                                {
                                    for (int j = 0; j <= dtwrongvaluesFinal.Rows.Count-1; j++)
                                    {
                                        
                                        if (dtcheckrepeated.Rows.Count > 0)
                                        {
                                           
                                            for (int m = 0; m <= dtcheckrepeated.Rows.Count-1; m++)
                                            {
                                               
                                                    UnitCodeWrongchk = Utilities.ObjectConverter.ConvertToString(dtwrongvaluesFinal.Rows[j]["UnitCode"]);
                                                    UnitCodeWrongchkwrong = Utilities.ObjectConverter.ConvertToString(dtcheckrepeated.Rows[m]["UnitCode"]);
                                                    if (UnitCodeWrongchkwrong == UnitCodeWrongchk)
                                                    {
                                                        dtwrongvaluesFinal.Rows.RemoveAt(m);
                                                    }
                                              
                                            }
                                        }
                                        dtwrongvaluesFinal.AcceptChanges();
                                    }
                                }

How to solve problem ?

What I have tried:

There is no row at position 4 when compare two datatable and remove unitcode similar
Posted
Updated 19-Aug-18 0:32am

1 solution

We can't tell - we don't have any access to your data, so we can't check your software under the same conditions you get the problem.

So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. Google "Visual Studio debugger" should give you the info you need to use it.

Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900