The DOM (Document Object Model) is a W3C project (see http://www.w3.org/DOM/
) and AFAIK won't help you here.
The general process for the reading files is:
Sub processfile()
Dim s As String
Dim lRow As Long
Open "filename.html" For Input As #1
Do While Not EOF(1)
lRow = lRow + 1
Line Input #1, s
Cells(lRow, 1) = s
Loop
Close #1
End Sub

Signature
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.
> is it possible or a reference to allow me to extract data from a html
> file... example, i needed my vba code to return me all href and src attribs
[quoted text clipped - 11 lines]
>
> aloha, orbii
Sorry I forgot to mention that this is quite a difficult process to parse an
HTML file as attributes don't have to be an the same line and can be split.
But it can be done.

Signature
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.
> is it possible or a reference to allow me to extract data from a html
> file... example, i needed my vba code to return me all href and src attribs
[quoted text clipped - 11 lines]
>
> aloha, orbii
orbii - 08 Jan 2007 05:13 GMT
hi martin, thank you so much for your info. i might just go the php route
by using excel to trigger php then spit the file back. but your info is
very much helpful.
btw, what is AFAIK? and how do i rate this reply?
aloha orbii
> Sorry I forgot to mention that this is quite a difficult process to parse
> an
[quoted text clipped - 23 lines]
>>
>> aloha, orbii
orbii - 08 Jan 2007 05:31 GMT
oh i forgot to mention, we found something in vba refernce that is named
"Microsoft HTML Object Libary" this morning.
aloha, orbii
> Sorry I forgot to mention that this is quite a difficult process to parse
> an
[quoted text clipped - 23 lines]
>>
>> aloha, orbii