View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] pechoi@syr.edu is offline
external usenet poster
 
Posts: 3
Default How to read HTML

Hi all,
My function looks like:
Function getWebPage()
Dim loInet As InternetExplorer
Dim lsURL As String
Dim loObject As Object


Set loInet = New InternetExplorer
loInet.Visible = True

lsURL = "http://finance.yahoo.com/"

loInet.Navigate lsURL

End Function

I don't know how to read the HTML site I just opened.

THx