Hopefully a relatively simple question but I can't seem to find the answer.
If I start a backgroundworker on a child form and then want to check it from the parent form to see if it's running how would I go about it?
I've tried calling Form1.BackgroundWorker.IsBusy() but regardless of whether it is running it always returns False.
At the moment I have the code following code to open the form (I check first to see if it's already opened):
I'm probably being a bit stupid but never mind!
Thanks
Chris
If I start a backgroundworker on a child form and then want to check it from the parent form to see if it's running how would I go about it?
I've tried calling Form1.BackgroundWorker.IsBusy() but regardless of whether it is running it always returns False.
At the moment I have the code following code to open the form (I check first to see if it's already opened):
Code:
Dim NewMDIChild As New Form1()
NewMDIChild.MdiParent = Me
NewMDIChild.Show()
Form1 = nothing
Thanks
Chris