I\'m looking to pass two or more parameters to a thread in VB 2008.
The following method (modified) works fine without parameters, and my status bar gets updated ver
Dim evaluator As New Thread(Sub() Me.testthread(goodList, 1)) With evaluator .IsBackground = True ' not necessary... .Start() End With