Inaccurate Error Message

Working on new editor enhancements?
AND51
Addict
Addict
Posts: 1040
Joined: Sun Oct 15, 2006 8:56 pm
Location: Germany
Contact:

Inaccurate Error Message

Post by AND51 »

Hello!

Code: Select all

CreateXML(0, #PB_Ascii)

html=CreateXMLNode(RootXMLNode(0))
SetXMLNodeName(html, "html")


head=CreateXMLNode(html, 0, #PB_XML_Instruction)
SetXMLNodeName(head, "head")

title=CreateXMLNode(head)
IDE wrote:A commant/CData/DTD node cannot have children.
Instruction-nodes cannot have children obviusly, too.
PB 4.30

Code: Select all

onErrorGoto(?Fred)