ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Launch IE with Table (https://www.excelbanter.com/excel-programming/420302-launch-ie-table.html)

Pradip Jain

Launch IE with Table
 
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


joel

Launch IE with Table
 
I would recommend opening a word application and design you webpage in word.
Then save the word document as HTML. Next open the html document in a IE
explorer application. The web browser is not intended to as a tool to create
web pages, it is only a viewer.

"Pradip Jain" wrote:

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


Tim Williams

Launch IE with Table
 
What do you know about HTML ?

IE.navigate "about:blank"
Do While IE.busy
Loop
IE.document.Open "text/html"
IE.document.write "<html<bodyYour table goes here</body</html"
IE.document.Close

Tim


"Pradip Jain" wrote in message
...
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





All times are GMT +1. The time now is 04:28 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com