Hi All,

I'm writing an application which takes the values out of a selected datagridview's column, places each value into a string and using a for loop, scrapes each values data from the website and places it into a second datagridview.

As there can be heaps of data to be scraped, I would like to inform the user of the progress and without locking up the user interface while the data is being scraped.

I'm following this article Using the BackgroundWorker Component but getting stuck at


Code:
worker.ReportProgress(i, i & " iterations complete")