MatsHulten
Programmer
Hi! Here's what I'm trying to do:
=====================================================================
Convert
<rs>
<z:row MenuItem="19" MenuRefItem="2194" MenuName="User administration" MenuLink="" />
<z:row MenuItem="20" MenuRefItem="2194" MenuName="Pictures and background" MenuLink="" />
</rs>
Into this
<Menu>
<MenuItem ID="19" Parent="2194" MenuLink="">User Administration</MenuItem>
<MenuItem ID="20" Parent="2194" MenuLink="">Pictures and background</MenuItem>
</Menu>
The first XML-string is given when you save an ADO recordset to XML, the second is what I want to return from my COM-object.
Can someone help me get started?
-Mats Hulten
=====================================================================
Convert
<rs>
<z:row MenuItem="19" MenuRefItem="2194" MenuName="User administration" MenuLink="" />
<z:row MenuItem="20" MenuRefItem="2194" MenuName="Pictures and background" MenuLink="" />
</rs>
Into this
<Menu>
<MenuItem ID="19" Parent="2194" MenuLink="">User Administration</MenuItem>
<MenuItem ID="20" Parent="2194" MenuLink="">Pictures and background</MenuItem>
</Menu>
The first XML-string is given when you save an ADO recordset to XML, the second is what I want to return from my COM-object.
Can someone help me get started?
-Mats Hulten