Hi all,

Currently, I'm developing a project related to RFID which includes display data real time on screen. (I have a SQL Server 2005 express database. Once reader throw me a tag, I will go and pull the related information of this tag from DB and return to windows application.)
One of the windows forms will display the tag data that has been read by the RFID Reader with related information. And I use DataTable to keep this data and on my form I have one GridView which datasource is point to this DataTable. (I have 10 readers which will throw me the tags that had been read and so data will come in simultaneously)

The problem is during reading and displaying information on grid, sometimes the datatable throw me an error of "DataTable internal index is corrupted: '5'".
I found some post that said to use BeginInit, EndInit and Accept Changes.

I want to know is "Is there any solution that I can replace datatable with???"

Thanks.
scsfdev