http post working, but how do I retrieve the return result?

  • Thread starter Thread starter Penstar
  • Start date Start date
P

Penstar

I have a http post in the code of a form, as follows.
Set ie = CreateObject("InternetExplorer.Application")
smsmessage = Test%20Message
HttpString = "http://www.abc.com.au/gateway/etc.
Set ie = Nothing
The post works fine, but I have not idea how to retrieve the return result
from the post.

Any Ideas.
Thanks
Penny
 
Penstar said:
I have a http post in the code of a form, as follows.
Set ie = CreateObject("InternetExplorer.Application")
smsmessage = Test%20Message
HttpString = "http://www.abc.com.au/gateway/etc.
Set ie = Nothing
The post works fine, but I have not idea how to retrieve the return result
from the post.

I have done this sort of thing, not by automating an instance of IE, but by
using the Internet transfer Library code posted here:

http://www.mvps.org/access/modules/mdl0037.htm
Modules: Internet Data Transfer Library
 
Thank you for your suggestion. I will keep this in mind for the future.

I have somehow worked out how to get my result by by automating IE.

Penny
 
Penstar said:
Thank you for your suggestion. I will keep this in mind for the future.

I have somehow worked out how to get my result by by automating IE.


Very good. There are other ways, too, but that was the only one I've used.
 
Back
Top