Am I doing this correctly? So always if I use this multi thing I put start & join?
Code:Dim MyThread1 As New System.Threading.Thread(AddressOf getlinks1) Dim MyThread2 As New System.Threading.Thread(AddressOf getlinks2) Sub main() MyThread1 .Start() MyThread1 .Join() MyThread2 .Start() MyThread2 .Join() End Sub Sub getlinks1() Dim ProcID As Integer ProcID = Shell("getlinkcollection.exe") End Sub Sub getlinks2() Dim ProcID As Integer ProcID = Shell("getlinkcollection.exe") End Sub





Reply With Quote