
Saving Excel file from the Web using VBS
(Earlyer post answered but solution didn't work)
Here the source for my Script.vbs
Set IE = createobject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate " http://www.*-*-*.com/
Worldwide1.xls"
My script brings up the remote excel workbook just fine
however I would like to be able to add more to my code in
order to not only have it grab the excel file from the URL
but than save it to an excel file on my HD called
MyExcelFile.xls
Can someone Please help me with this?????