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)