1
Support Questions / Re: Creating a separate thread to constantly read/Compute values?
« on: December 17, 2014, 02:37:08 PM »
Hi Archie,
I was going with this:
with Backgrounder literally just reading and sleeping. But, this made something angry.
SO i will give your suggestion a shot.
I was going with this:
Code: [Select]
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Control.CheckForIllegalCrossThreadCalls = False 'Eliminates some errors when multithreading
Backgrounder = New Thread(AddressOf Me.BoxUPdate) 'Declaires Backgrounder as a new thread subroutine
Backgrounder.Start()
End Sub
with Backgrounder literally just reading and sleeping. But, this made something angry.
SO i will give your suggestion a shot.