Hi everyone! I'm trying to start using threads in this application I'm making and I'm having some problems. The task is simple: I want to read a database with 200000 records that's situated in another PC, so it takes some seconds. Then I want to show them in a datagridview control. The thing is that I'm trying to fill a dataset which I define in the main thread and I cannot access it within the "worker" thread, and If I define it within the worker thread I cannot send it to the main thread.
Can somebody explain to me how people solve this problem? Thanks!! Nacho
