F
friend
Hi all,
I am trying to implement multithreading in myproject.
I have created a thread say thread1, and i am running a splashscreen
in that thread.
Public thread1 As Thread
thread1 = New Thread(AddressOf BackgroundWork)
thread1.Start()
Public Sub BackgroundWork()
SplashScreen1.ShowDialog()
End Sub
I have to kill this thread at one point in my program. I am using
thread1.abort(), but the splashscreen1 doesnt go from the vision. If i
move the mouse pointer or other the splashscreen disappears.
The splashscreen should disappear as soon as the thread is killed. How
to solve this issue.
Thank you for any suggestion.
I am trying to implement multithreading in myproject.
I have created a thread say thread1, and i am running a splashscreen
in that thread.
Public thread1 As Thread
thread1 = New Thread(AddressOf BackgroundWork)
thread1.Start()
Public Sub BackgroundWork()
SplashScreen1.ShowDialog()
End Sub
I have to kill this thread at one point in my program. I am using
thread1.abort(), but the splashscreen1 doesnt go from the vision. If i
move the mouse pointer or other the splashscreen disappears.
The splashscreen should disappear as soon as the thread is killed. How
to solve this issue.
Thank you for any suggestion.