Question : How can I read a web page source code with VB

I want to be able to set a variable in VB, open up a web object and stream the source code to that variable. I have web orders and would like to automate the download of those orders. When I "Export", I want to read that webpage's source code and extract the Order's download URL. I can open the web page but don't know the line of code I need to fetch the source code. I have this code so far.
 
Sub Example()
   Dim IE As Object
   Dim s As String
   Set IE = CreateObject("InternetExplorer.Application")
    With IE
        .Left = 20
        .Top = 20
        .Height = 540
        .Width = 950
        .MenuBar = 0
        .Toolbar = 1
        .StatusBar = 0
        .Navigate "http://www.georgeesser.com"
        .Visible = True
    End With
    'wait until IE has finished loading itself.
    Do While IE.busy
        DoEvents
    Loop
    s = IE.Document 'This line does not work
End Sub

Answer : How can I read a web page source code with VB

Try this API call (http://allapi.mentalis.org/apilist/URLDownloadToFile.shtml), it's probably the easiest way to create a local copy of the file your looking for. For the actual extraction of data, if you need help there I suggest you start a separate thread.
Any more questions just let us know :)
Random Solutions  
 
programming4us programming4us