How can I create 2 different processes in VB6 that will run concurrently?
I have 3 functions A, B and C, each of them taking 5 seconds.
Function C uses the results of Functions A and B
Functions A and B are completely independant of each other and their processing is performed on different machines so I should be able to improve the performance by about 30%
How can I start function B before I receive the result from Function A?
I have 3 functions A, B and C, each of them taking 5 seconds.
Function C uses the results of Functions A and B
Functions A and B are completely independant of each other and their processing is performed on different machines so I should be able to improve the performance by about 30%
How can I start function B before I receive the result from Function A?