
WebBrowser Control - Error 438
I was wondering if you could help me with a problem I'm having. I am trying
to use
set doc = WebBrowser1.document
doc.forms(1).submit
(Strangely enough, the other form on the page with only one field works just
fine when I use doc.forms(0).submit)
on a website and it keeps telling me
Error 438: Object Doesn't Support this Property or Method
I looked up Error 438 on Codehound and found a MS page that deals with it.
I found the fix, but it says it is only a Win95 problem. I have Win98 and
it says it has been fixed for Win98. The only other way to get around it at
this point is to call the form's own submit routine, which doesn't make a
whole lotta sense to me at this point (as in how does one do that if the
method="submit", the name="submit" and the value="submit"?).
Any ideas or pointers?
DC