XMLerrs3.sml

  Download

More scripts: Dialog

Syntax Highlighing:

comments, key words, predefined symbols, class members & methods, functions & classes
            
# XMLerrs3.sml
string xmlfile$;
xmlfile$=_context.ScriptDir + "/badid.xml";
numeric errXML;
class XMLDOC dlgdoc;
errXML = dlgdoc.Read(xmlfile$);
if (errXML < 0) {
	PopupError(errXML);
	Exit();
	}
class XMLNODE dlgnode;
dlgnode = dlgdoc.GetElementByID("radiogp");
if (dlgnode == 0) {
	PopupMessage("Could not find dialog node in XML document");
	}
class GUI_DLG dlgwin;
dlgwin.SetXMLNode(dlgnode);
dlgwin.DoModal();