Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Tbird761

    Passing a variable to a sub for a new thread

    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?
  2. Tbird761

    Moving an object in .NET

    Dim XY As New System.Drawing.Point(Xcoord, Ycoord) objecttoset.Location = XY
  3. Tbird761

    Passing a variable to a sub for a new thread

    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...

Part and Inventory Search

Back
Top