ParseXML error using value returned by CreateXML(#PB_Any,
Posted: Wed Jan 10, 2024 6:37 pm
When I call ParseXML in the code below, it gives me the error "#XML object number is very high (over 10000), are You sure of that ?"
Is this a bug as I would think ParseXML should be able to handle whatever #PB_Any would generate.
Is this a bug as I would think ParseXML should be able to handle whatever #PB_Any would generate.
Code: Select all
; try to create a minimal ParamsXML file
hParamsXML = CreateXML(#PB_Any)
If hParamsXML
Protected InitParams.s = ~"<?xml version=\"1.0\"?>\r" +
~"<V-Mixer_RS-232C>\r" +
~"</V-Mixer_RS-232C>\r"
Debug InitParams
If ParseXML(hParamsXML,InitParams)