Gambas/flaws/bugs
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
XmlElement attribute enumeration
This code: <gambas>Public Sub BugTest()
Dim Node As New XmlElement Dim xmlAttr As Variant Dim xAttrs As Variant
' set up some attributes
Node.SetAttribute("attr1", "a value")
Node.SetAttribute("attr2", "another value")
xAttrs = Node.Attributes For Each xmlAttr In xAttrs ' the FOR EACH gives an error: "The program has returned the value: 1" Next
End</gambas>
...produces this error:
It should also be noted that in the line just before the bug occurs, the Gambas IDE reports that "xAttrs" is an XmlElement -- but according to the documentation for XmlElement.Attributes, it should be ".XmlElementAttributes".

