GregTheGeek
Programmer
I have been trying to use the shDocVw.InternetExplorer object to open and navigate websites. From everything I've read, it looks like POST data can be included as a parameter in the navigate or navigate2 methods. The MSDN documentation of these two methods is a bit...enigmatic (at least to me and a co-worker):
It is my understanding that this optional parameter will include data as a POST request to the url specified. I am having trouble getting this to work. Has anyone had any success? MSDN also metions the Navigate2 method stating: The post data specified by PostData is passed as a SAFEARRAY Data Type structure.
Any help would be appreciated.
Thanks in advance!
GTG
Code:
Dim objIE As New InternetExplorer
With objIE
.Navigate "[URL unfurl="true"]http://www.myurl.com",,,"username=user&password=pass"[/URL]
.Visible = True
End With
It is my understanding that this optional parameter will include data as a POST request to the url specified. I am having trouble getting this to work. Has anyone had any success? MSDN also metions the Navigate2 method stating: The post data specified by PostData is passed as a SAFEARRAY Data Type structure.
Any help would be appreciated.
Thanks in advance!

GTG