is it possible for 2 procedures to process simultaneously? ex. command one contains a loop procedure and command two has another procedure of its own..what i want is that when the loop procedure in command one starts i want to be able to click command two without pausing the loop procedure...is this possible??? thanks in advance
DoEvents allows you to let other events get triggered only. I created 2 command buttons. Put DoEvents in both the Command_Click functions and made each command button increment the value of two different text boxes. When Command1 was clicked textbox1 incremented. When Command2 was clicked textbox2 was incremented. But textbox1 stopped incrementing
THE TIME/WEATHER IS
Don't know how to use APIs or have problem with them,
Download API-Guide & API-Viewer from http://www.allapi.net
I believe what you want to do is asynchronous threading... For which VB lacks any serious support. You can get by using activex exes.. but again, a poor solution.
Thank You
It is actually a modified GIF I downloaded in one site.
I believe what you want to do is asynchronous threading... For which VB lacks any serious support. You can get by using activex exes.. but again, a poor solution.
VB has support for asyncronisation. But VB5 is more stable than VB6. I have attached a small project showing it. But it was so unstable that, my vb6 crashed 6 times and computer twice.
You can see the asyncronisation but, when you close the form, vb crashes.
THE TIME/WEATHER IS
Don't know how to use APIs or have problem with them,
Download API-Guide & API-Viewer from http://www.allapi.net