Situation:
I am attempting to inspect a variable a
, showing as a DispStaticNodeList
object in the locals window; Excel crashes every time I try to do this.
Here is the variable a
, apparently of type DispStaticNodeList
, in the locals window:
Reproducing the Excel crash:
- Attempting to expand the item in the Locals Window causes Excel to crash.
- Attempting to loop over it with a
For Each
also causes a crash.*TestFail
Research highlights:
- I did some digging around, searching for combinations such as
Excel
+Crash
+DispStaticNodeList
yielded zero results; At least with the Google search terms I used. Pretty sure my Google-Fu was weak. If I believe this article I am dealing with a COM object that is supported by
MSHTML
.And according to this:
If the name is DispStaticNodeList, we can be pretty sure it's an array..(or at least has array semantics).
Based on point 3 I wrote the code, TestPass
, below, which does loop over it successfully, but I don't fully understand why. I have set an object and then looped its len!
- I have just found this which states:
NodeList objects are collections of nodes such as those returned by properties such as Node.childNodes and the document.querySelectorAll() method.
So it seems the object may be a NodeList
, which given the description in the immediate window seems about right, and as a list I can loop over its length, but not sure why For Each
won't work and why Excel crashes. Colleague suggests it may crash due to hierarchical nature of data. I further note that there are classes called IDOMNodeIterator
and NodeIterator
, but I am not sure if I can use those in line with the descriptions for NodeList
methods here.
Question:
What is a
and why does it cause Excel to crash when attempting to inspect or loop with a For Each
?
Code that loops successfully:
Option Explicit
Public Sub TestPass()
Dim html As HTMLDocument
Set html = GetTestHTML
Dim a As Object, b As Object
Set a = html.querySelectorAll("div.intro p")
Dim i As Long
For i = 0 To Len(a) -1
On Error Resume Next
Debug.Print a(i).innerText '<== HTMLParaElement
On Error GoTo 0
Next i
End Sub
Public Function GetTestHTML(Optional ByVal url As String = "https://www.w3schools.com/cssref/trysel.asp") As HTMLDocument
Dim http As New XMLHTTP60
Dim html As New HTMLDocument
With http 'Set http = CreateObject("MSXML2.XMLHttp60")
.Open "GET", url, False
.send
html.body.innerHTML = .responseText
Set GetTestHTML = html
End With
End Function
*TestFail Code that causes crash:
Public Sub TestFail()
Dim html As HTMLDocument
Set html = GetTestHTML
Dim a As Object, b As Object
Set a = html.querySelectorAll("div.intro p")
For Each b In a
Next b
End Sub
Notes:
I sent a test workbook to a colleague who was also able to reproduce this behaviour with the example given.
Project References:
Sample of HTML (link was also provided)
<div class="noSel">
<h1 style=""><span class="markup"><h1></span>Welcome to My Homepage<span class="markup"></h1></span></h1>
<div id="helpIntro" style="">
<span class="markup"><div class="intro"></span>
<div class="intro">
<p style="margin-top: 4px; border-color: rgb(255, 102, 102); background-color: rgb(255, 255, 153);"><span class="markup"><p></span>My name is Donald <span id="Lastname" style=""><span class="markup"><span id="Lastname"></span>Duck.<span class="markup"></span></span></span><span class="markup"></p></span></p>
<p id="my-Address" style="border-color: rgb(255, 102, 102); background-color: rgb(255, 255, 153);"><span class="markup"><p id="my-Address"></span>I live in Duckburg<span class="markup"></p></span></p>
<p style="margin-bottom: 4px; border-color: rgb(255, 102, 102); background-color: rgb(255, 255, 153);"><span class="markup"><p></span>I have many friends:<span class="markup"></p></span></p>
</div>
<span class="markup"></div></span>
</div>
<br>
<div class="helpUl">
<span class="markup"><ul id="Listfriends></span>
<ul id="Listfriends" style="margin-top:0px;margin-bottom:0px;">
<li><span class="markup"><li></span>Goofy<span class="markup"></li></span></li>
<li><span class="markup"><li></span>Mickey<span class="markup"></li></span></li>
<li><span class="markup"><li></span>Daisy<span class="markup"></li></span></li>
<li><span class="markup"><li></span>Pluto<span class="markup"></li></span></li>
</ul>
<span class="markup"></ul></span>
</div>
<ul style="display:none;"></ul>
<p style=""><span class="markup"><p></span>All my friends are great!<span class="markup"><br></span><br>But I really like Daisy!!<span class="markup"></p></span></p>
<p lang="it" title="Hello beautiful" style=""><span class="markup"><p lang="it" title="Hello beautiful"></span>Ciao bella<span class="markup"></p></span></p>
See Question&Answers more detail:os