Re: multi-channel download (General questions)
I'm doing this within my app.
A little snippet to show how:
Dim iWodHTTP() As wodHttpDLXCom
Implements IwodHttpNotify
Then I have a function in which I create a new HTTP request
ReDim Preserve iWodHTTP(iMyIndex) As wodHttpDLXCom
Set iWodHTTP(iMyIndex) = New wodHttpDLXCom
Set iWodHTTP(iMyIndex).Notification = Me
iwodhttp(iMyIndex).url=the_URL_to_request
iwodhttp(imyIndex).GET
The iwodHTTPNotify_done event is fired when that request is done.