Accessing DataRow within Task Programming Software Development by yssirhc … processRow, which is of type DataRow, but I get a RowNotInTableException This row has been removed from a table and does… Re: Accessing DataRow within Task Programming Software Development by lolafuertes As a general rule, when you think about tasks, you must think about isolated processes, having thier local data, connections, and results, all of them running asinchronously from the main thread, and avoiding possible collisions. Can you isolate the offending row inside the task? Hope this helps