background worker

  1. Dharamart

    BackgroundThread with infinite loop with Async method ?

    Hello Friends, I need help in windows form. When ever i am trying to implement the Async method in background for infinite time , my windows apps not performing well. so i need solution for this please suggest me the solution for this issue. i just want to run my windows application does not...
  2. H

    Run processes sequentially within BackgroundWorker

    Having trouble running multiple processes one after another from within backgroundworker First processes, regardless which one I put as first seems to run, however nothing occurs afterwards. Please excuse my ignorant, I cant seem to find what I am looking for, Wondering if someone can shed...
  3. flashkid10

    Attaching a XmlSerializer to Progress Bar from a Background worker

    How do I attaching a XmlSerializer to Progress Bar (called SaveBar)? the Serializer is called from a background worker public class TestObject { public int OneValue { get; set; } public int TwoValue { get; set; } } TestObject test = new TestObject { OneValue = 5, TwoValue = 4 }; private void...
Back
Top Bottom