views:

21

answers:

1

Hello, I never used AsyncCallback. Need your help.

When In Windows Form app I importing rows application form freezes. To prevent it, i think I can use AsyncCallback.

foreach (DataRow dr in srcdt.Rows)
{
    desdt.ImportRow(dr);
}

and while importing rows, to show in lebel.Text imported row count. Some help please.

+1  A: 

Have a look at BackgroundWorker

This will allow you to kick off your long running process in another thread, receive progress reports and a completed event.

DavidGouge