O Overburn Mar 23, 2004 #1 Is it possible to create an array of threads? and if so, can someone give an example of how.
M Mattias Sjögren Mar 23, 2004 #2 Is it possible to create an array of threads? Sure. Dim twoThreads(1) As Thread twoThreads(0) = New Thread(AddressOf Thread1Proc) twoThreads(1) = New Thread(AddressOf Thread2Proc) Mattias
Is it possible to create an array of threads? Sure. Dim twoThreads(1) As Thread twoThreads(0) = New Thread(AddressOf Thread1Proc) twoThreads(1) = New Thread(AddressOf Thread2Proc) Mattias
O Overburn Mar 23, 2004 #3 Thanks, now one last question, I know this is about arrays in general, but how do I increment the array?
Thanks, now one last question, I know this is about arrays in general, but how do I increment the array?
M Mattias Sjögren Mar 23, 2004 #4 Thanks, now one last question, I know this is about arrays in general, but how do I increment the array? Click to expand... You can use the ReDim statement, or use a ArrayList collection instead. Mattias
Thanks, now one last question, I know this is about arrays in general, but how do I increment the array? Click to expand... You can use the ReDim statement, or use a ArrayList collection instead. Mattias
H Herfried K. Wagner [MVP] Mar 23, 2004 #5 * Mattias Sjögren said: You can use the ReDim statement, or use a ArrayList collection instead. Click to expand... In this case, 'ReDim Preserve' is useful, but I prefer a more dynamic data structure like a collecton ('ArrayList', ...).
* Mattias Sjögren said: You can use the ReDim statement, or use a ArrayList collection instead. Click to expand... In this case, 'ReDim Preserve' is useful, but I prefer a more dynamic data structure like a collecton ('ArrayList', ...).