tags:

views:

49

answers:

1

my code is very big , it take many resource from the system - and i want to do something with this. i have an idea : to do the code with parallel - can i do it ? if yes how ? please give specify example. thanks alot

+1  A: 

Am I understanding you correctly: you want a Visual Basic 6 application to implement multi threading, so that certain tasks can run "semi parallel"? If that is the case, the document Multi-Threading In VB5 and VB6 should get you started.

froeschli
+1 for linking to Dan Appleman. It's excellent (if unavoidably a bit long). Of course running tasks in parallel will just mean taking even more "many resource from the system". It might help the GUI remain responsive, which may have been what shirel was asking about...?
MarkJ
This is another good question about running tasks in parallel in VB6 http://stackoverflow.com/questions/383162/to-use-thread-in-programming-in-vb6
MarkJ