Hi,
I think overall http async is great but in some cases it sucks. The main reason is the fact that you need to handle your code in a different sub (ResponseSuccess).
I have a scenario where I struggle with this. I have a list and when I click on an item in the list it needs to get detailed information through a webservice.
If that is done it needs to give me back all information so that I can handle it and open a different layout with that information.
The list click has a select case on determining a list item type, based on that type I need to do different kind of stuff. Now, because calling HTTP does not bring me back to my original part of the code I cannot use "select case" after the proces is finished. Sure, I could save stuff in a global but I don't want that, it gets messy.
Any suggestions? Can I call a HTTP and get back the results in the sub where I called the HTTP from?
Cheers,