Background process as delegate

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a winform that will start directly from the scheduler. The program
will perform a batch process and put status messages on a winform.
I start up the back ground process as a delegate directly in my winform
constructor after InitializeComponent();.
Is this a good idea or is there a better way?
 
Arne,

Without some background knoledge of the logic of your program I can't tell
for sure whether this is the right place or not. From technical point of
view I don't see any problem. As long as you start the code in a worker
thread I don't see any prblem to start it there.
 
Back
Top