Hi,
I start a new thread this way:
Dim Threads As New Thread(New ParameterizedThreadStart(AddressOf ConnectThread))
Threads.Start()
However, from within this thread, I enable a timer, but the problem is that when this thread finish, timer is disposed as well.
How can I enable a timer from a thread, is it impossible?
Please help me.
Thanks.
I start a new thread this way:
Dim Threads As New Thread(New ParameterizedThreadStart(AddressOf ConnectThread))
Threads.Start()
However, from within this thread, I enable a timer, but the problem is that when this thread finish, timer is disposed as well.
How can I enable a timer from a thread, is it impossible?
Please help me.
Thanks.