Gambas/flaws/bugs

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Gambas‎ | flaws
Revision as of 21:35, 4 June 2015 by Woozle (talk | contribs) (Created page with "==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 att...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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:

2015-06-04 17-31-05 screenshot of Gambas error 1.png