My problem is that my thread wont be recognized by visual studio. My code is
Code: Select all
Private Sub TC1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TC1.Tick
Dim myThread As System.Threading.Thread
myThread = New System.Threading.Thread(AddressOf Me.Check1)
myThread.Start()
End Sub
Code: Select all
New System.Threading.Thread(AddressOf Me.Check1)
If anyone can help it would be greatly appreciated because I really need to be able to create another thread to run a very laggy part of the application.