This might be a problem, as I need to work with already made objects within an existing class with the new threads. Maybe there is a way I can just execute code in an async method?
Hello folks. I've got an odd situation here. I need to pass a variable to a sub that I want to make into a new thread. My current conundrum is as follows:
Dim Mults(127) as Threading.Thread
Dim n As Integer
For n = 0 to 127
Mults(n) = New Threading.Thread(AddressOf SomeSub(n))
Next
If I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.