up vote 8 down vote favorite
8
share [g+] share [fb]

I use C#'s BackgroundWorker object frequently to start a thread and perform a task. What's the easiest way to accomplish the same thing in Delphi?

Here's some code in C#:

private void button1_Click(object sender, EventArgs e)
{
  BackgroundWorker bg = new BackgroundWorker();
  bg.DoWork += new DoWorkEventHandler(bg_DoWork);
  bg.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bg_RunWorkerCompleted);
  test_number++;
  object[] arguments = { "test", test_number };
  bg.RunWorkerAsync(arguments);
}

void bg_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
      // done.
}

void bg_DoWork(object sender, DoWorkEventArgs e)
{
     // do actual work here
}
link|improve this question

feedback

2 Answers

up vote 16 down vote accepted

Look into OmniThreadLibrary by Primoz Gabrijelcic, or into AsyncCalls by Andreas Hausladen, which should both give you similar functionality.

link|improve this answer
feedback

for your solution this is: delphi-components/backgroundworker this component like c# backgroundworker's event, property etc.

link|improve this answer
Why the (: is there some problem with this component? – Johan Dec 8 '11 at 11:44
no no, no problem this component, cause this my first answer ok? – merşahin Dec 8 '11 at 11:47
+1 I don't know this component, but given the fact that it has sourcecode it looks like something you can try. – Johan Dec 8 '11 at 11:52
yes, very usable component – merşahin Dec 8 '11 at 12:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.