
Signature
I may not know yet, but I will.
"=?Utf-8?B?Y2x1ZWxlc3MgSm9obg==?="
<cluelessJohn@discussions.microsoft.com> wrote in
news:83DBB128-15B0-497D-B4BC-B6BDEF17B2AC@microsoft.com:
> I get an invalid procedure call on the line
> oHttpPost.Open "GET", c_urlCheckIP, False
> Can you explain what it is doing? I don't get any hints form VBA
> since this is a generic Object.
Have you tried googling for "Microsoft.XMLHTTP" -- lots of good advice
there?
> As far as digging in the code,
> The only access to the web page code is through right-click View
> Source. I can identify the names of text boxes, radio buttons, and
> the submit button caption.
That is all you need. Forms are submitted using a url that is made of the
page address and a ? and the id and value pairs delimited with & and =
characters. This is from memory, but the details are in any basic HTML
book.
> The submit action appears to be this:
> <FORM action="ViewReport.asp" method=Post target=_blank id=form1
> name=form1><strong>
There you go: the uri will look something like
http://somewhere.com/folder/viewreport.asp?name=tim%20F&age=21&hidden=true
and you need to use the POST method rather than the GET.
> Can any of this be useful to me?
All of it! FWIW, this is just what happens behind the scenes with search
toolbars etc.
Hope it helps: if you need any more in depth pointers, then you are
probably better off in an HTML forms group than a database one!
Tim F
clueless John - 31 Aug 2005 14:54 GMT
Thanks! Those were the clues I needed.

Signature
I may not know yet, but I will.
> "=?Utf-8?B?Y2x1ZWxlc3MgSm9obg==?="
> <cluelessJohn@discussions.microsoft.com> wrote in
[quoted text clipped - 37 lines]
>
> Tim F