Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to launch IE from Excel and then go to a specific link, get a bunch of
data and save it as an Excel or CSV file. I have the code below. But the site has login info. Does someone know how I supply the login info? Thanks much. Set ieApp = CreateObject("InternetExplorer.application") sUrl1 = "https://www.yahoo.com" If ieApp Is Nothing Then MsgBox ("Could not launch Internet Explorer. The process will now exit.") Exit Function End If ieApp.Visible = True ieApp.navigate sUrl1 Do DoEvents Loop While ieApp.busy |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
New excel spreadsheet being saved as a scrap file(object) | Excel Discussion (Misc queries) | |||
what is worksheet in scrap? | Excel Discussion (Misc queries) | |||
What is the scrap object ? | Setting up and Configuration of Excel | |||
Why is worksheet being saved as scrap? why does it have the .shs? | Excel Worksheet Functions | |||
Macro launch - Button vs Manual launch , has different results. | Excel Programming |