Re: loading XML (with style***) from memory



XML DOM Objects/Interfaces might help u to solve this problem. I dont
use xslt by myself.
i used xml DOM in MSTHML, The HTMLElement with tag as "xml " in MSHTML
may be translated to XMLDOMDocument, For instance:
CComQIPtr<IHTMLElement> pElem;
// pElem.tagName = "xml"
pElem->QueryInterface(IID_IXMLDOMDocument, (LPVOID*)pXMLDOC);

Then u can manipulate xml DOM, I think xml DOM may acess xslt element.
Reference MSDN: "XSLT Developer's Guide" and "XML Developer's Guide"

.