Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OLE internet explorer save as

Status
Not open for further replies.

goodmanrAy

Programmer
Feb 6, 2002
53
0
0
GB
Hello

I am creating an instance of internet explorer via OLE.
I was wondering if anyone knows how to carry out a 'save as' on the active web page.

uses ComObj;
var IE : Variant;


IE := CreateOleObject('InternetExplorer.Application');
IE.Visible := true;
IE.Navigate('web address')
???????
IE.SaveAs('C:\MyWordDoc.Doc'); //not correct



cheers
Andrew


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top