I have an application that grabs data to a csv file and the programs grabs the data once every 5 seconds. the problem is that i cant do any other operations while this happening in the background. I'm using a timer to get the job done.
I found out abt the backgroundworker control and I tried to use it and I set the RunWorkerAsync in the form deceleration method(after initializeComponent) but it doesent get started out. I have given the coding for backgroundworker below.
What needs to be corrected here? nd if this is not the right aproach, what is the best way to get the background process happening while im being able to procede with the other forma activities.Thanks
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
//int a = (int)(e.Argument);
if (backgroundWorker1.CancellationPending)
{
e.Cancel = true;
}
else
{
timerQuote.Enabled = true;
timerQuote.Start();
}
}
private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
if (e.Cancelled)
{
MessageBox.Show("grabbing is terminated");
}
}
//Form decleration
public Form1()
{
InitializeComponent();
backgroundWorker1.RunWorkerAsync();
...
}