Click to See Complete Forum and Search --> : Multiple Asynchronous


scubasteve7979
September 13th, 2005, 04:57 PM
Is it possible to call a bunch of Asynchronous commands at once? That's the idea right? But I'm getting mixed results, and my callback seems to get interrupted too. If I run it synchronously it's fine. Anyone have any experience with this?

In my callback I return the results from the Asyc command by using:

Dim r As myclass.myStructre = Async.EndInvoke(myIASyncResult)

Is my callback getting overrun by other callbacks coming through at the same time? Is there a way to return my results without endinvoke? Not sure if that would do anything....

Any hep is appreicated.