Search found 2 matches

by dougmo52
Tue Feb 14, 2017 7:31 pm
Forum: Coding Questions
Topic: MainXMLNode doesn't seem to return
Replies: 2
Views: 2679

Re: MainXMLNode doesn't seem to return

Thanks for quick response. I did a search for Loading in SB help and didn't come up with anything although I do see Loading procedures in examples. I don't see a call to Loading so I presume the LoadXML call somehow triggers it internally. Where can I find more documentation on what SB calls require ...
by dougmo52
Tue Feb 14, 2017 6:46 pm
Forum: Coding Questions
Topic: MainXMLNode doesn't seem to return
Replies: 2
Views: 2679

MainXMLNode doesn't seem to return

The following SB code and XML code work OK in PureBasic, but in SpiderBasic the debug message after the call to MainXMLNode never appears. It's like MainXMLNode never returns.


hXML = LoadXML(#PB_Any,"TestXML.xml")
If hXML
If IsXML(hXML)
Debug "IsXML OK"
If XMLStatus(hXML) = #PB_XML_Success ...