> WebBrowser1 was just my typo when I was cutting and pasting to this
> post.
[quoted text clipped - 7 lines]
> If you have any ideas why, or find which is the correct syntax for
> your version, perhaps you would let me know. I am on Excel 2002 SP3.
Sorry, I don't know. I am using the same version of Excel.
Perhaps it's one of the 1483279 bugs and features that nobody ever got
around to fixing.

Signature
roger
grove - 16 Apr 2008 23:07 GMT
I probably need to start a new thread, but I will give it a try.
This code works fine in Excel 2002
Private Sub WB_DocumentComplete(ByVal pDisp As Object, URL As Variant)
Dim sGetText As String
If (pDisp Is WB) Then
sGetText = WB.Document.Body.InnerText
...do something with sGetText ...
End Sub
But in Excel 2003 "sGetText" is empty for the same web page.
Thanks
grove