P
Pradip Jain
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
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