I have as SMS provider for sending SMS's from my program by way of a POST code line:
xmlHttp.Open "POST", strSend, False
People can reply to this SMS once.
To retrieve the return SMS with its associated data of date and time etc., I need to put the link in the internet browser which then returns one long string in the browser.
I have used the browser control previously in one of my programs, but only for retrieving a web page, but never for data.
Is there a way that I can send this link from my program and receive the data string into the program.
Thanks
PK