I need to know if there is a way to asynchronously call a wsc object. Here is a simple example of what I need to do.
set obj = createobject("some.wsc")
SOMECODE
obj.dosomething
SOMEMORECODE
Currently this script has to wait until obj.dosomething is finished before it will run SOMEMORECODE. I am looking for a way to run obj.dosomething without waiting for it to complete.
I've googled my fricken head off. Any ideas of where to look, or info in general is appreciated.
Thanks
set obj = createobject("some.wsc")
SOMECODE
obj.dosomething
SOMEMORECODE
Currently this script has to wait until obj.dosomething is finished before it will run SOMEMORECODE. I am looking for a way to run obj.dosomething without waiting for it to complete.
I've googled my fricken head off. Any ideas of where to look, or info in general is appreciated.
Thanks