I have a VB.net project which uses a background worker to do some stuff.
Now I want to expand the project to be able to do multiple stuff :)
A user can enter an URL in a textbox and when the user click on the parse button the program creates a new tabcontrol a outputs some data.
I use a hardcoded background worker for this.
But now I want to run multiple background workers to do this stuff so I can't rely on hard coding the background worker(s).
Is it possible to create background workers dynamically.
I just don't have any idea how to set this up since I think I need to set up the different methods and variables like:
Private bw As BackgroundWorker = New BackgroundWorker
bw.WorkerReportsProgress = True
bw.WorkerSupportsCancellation = True
AddHandler bw.DoWork, AddressOf bw_DoWork
AddHandler bw.ProgressChanged, AddressOf bw_ProgressChanged
AddHandler bw.RunWorkerCompleted, AddressOf bw_RunWorkerCompleted
bw.RunWorkerAsync()
Private Sub bw_DoWork()
, Private Sub bw_RunWorkerCompleted()
and Private Sub bw_ProgressChanged()
I think I need to declare the background workers in some sort of array like variable (list
/ dictionary
)??? Other then that I have no idea how to tackle this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…