Hi !

I'm loading lots of Data into a DataTable with 10.000 ds of records.
So this needs a while I'm using DataAdapter and DataTable. All this is done in a backgroundprozess.
Now I want to be able to stop for example when the user decides to stop it by closing the form or by closing the application. I know stopping the backgroundworker could be done simple by calling the backgroundworker to Cncel async. But this canclation is pending as long as the dataAdapter still fills the table.

The question is: How can I stop the DataAdapter filling a table in a backgroundprozess.
Thx for any hints