Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i want to add a macro to launch IE window from Excel. I want the IE window to
contain a table which is populated from data to be taken from the excel sheet. Suppose currently the data what i want to populate in the IE window is contained in an excel array FinalResult (10,5) i got the code to launch the IE window. code below launches a blank IE window. how do i populate this IE window with the data contained in array FinalResult (10, 5). I want the data to appear in a table format with borders. Please help. Sub LaunchIE() Set ie = CreateObject("InternetExplorer.Application") ie.AddressBar = False ie.MenuBar = False ie.Toolbar = False ie.Width = 610 ie.Height = 700 ie.Left = 0 ie.Top = 0 ie.resizable = True ie.Visible = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Launch pivot table using Macro | Excel Programming | |||
Pivot table to launch Macro | Excel Programming | |||
Pivot table to launch Macro | Excel Programming | |||
How to launch one XLA from another on Excel launch | Excel Programming | |||
Macro launch - Button vs Manual launch , has different results. | Excel Programming |