Hi, I got a DataSet Table getting filled with data from a source of different threads. I have a problem where I view this Table in a DataGridView and my app freezes. If I execute the app in debugging mode in the IDE it works with out problems. Basically what I want is to be able to view and edit this dataset from the DataGridView while threads fill the table with data. I was thinking I probably have to use Invoke() on the DataGridView but I just cant think how to implement it…

DataGridView and Threads Problem