What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » "Reading" web page in VB6

"Reading" web page in VB6
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: "Reading" web page in VB6
code:
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)

    Dim HTML
    HTML = pDisp.Document.body.innerhtml

    Debug.Print HTML

End Sub

Can also do

code:
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)

    Debug.Print pDisp.Document.body.innerhtml

End Sub

This post was edited on 03-18-2008 at 01:11 PM by matty.
03-18-2008 01:05 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
"Reading" web page in VB6 - by Salem on 03-18-2008 at 11:25 AM
RE: "Reading" web page in VB6 - by Mike on 03-18-2008 at 12:52 PM
RE: "Reading" web page in VB6 - by matty on 03-18-2008 at 01:05 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On