J
Jianren
Dear all,
I have an application, besides the main thread, there is another
child thread, say, ChildThread, running.
I met a problem when I open a SaveFileDialog.ShowDialog, after
SaveFileDialog close, the ChildThread was stopped. So I want to
restart the ChildThread, then I call,
ChildThread=new Thread(new ThreadStart(ChildProcess));
ChildThread.Start();
But the ThreadState of ChildThread is unstarted although I called
ChildThread.Start(), so what is the problem? How can I restart the
ChildThread?
Jianren
I have an application, besides the main thread, there is another
child thread, say, ChildThread, running.
I met a problem when I open a SaveFileDialog.ShowDialog, after
SaveFileDialog close, the ChildThread was stopped. So I want to
restart the ChildThread, then I call,
ChildThread=new Thread(new ThreadStart(ChildProcess));
ChildThread.Start();
But the ThreadState of ChildThread is unstarted although I called
ChildThread.Start(), so what is the problem? How can I restart the
ChildThread?
Jianren