I am wondering if someone could pseudocode what I want to do here.
Using
vb.net 2003, I have a routine that does some stuff, but runs in a new thread. What I want though is to loop through all the records in the dataset and call the routine, either in a new thread or wait until the first thread has ended.
example...
for each row
bla = bla bla
some code here
thread.start()
next
basically I want to start processing the next record, but not overwrite the data being used in the first thread.