GeoffS Level: VB Lord

 Registered: 29-09-2004 Posts: 606
|
Re: Priority during execution code
VB6 runs in a single thread, so a section of code will not execute until the previous section has finished. In other words, the priority of execution is in the order in which your program calls the procedures. If you want to run more than 1 section of code at the same time you will need to move to VB.NET which is capable of running your code in multiple threads.
____________________________
multi-tasking - the ability to hang more than one app. at the same time.
|