G
G. Kumar
Hi, I need to convert some JScript code to C# for Infopath and was having some trouble creating a new IXMLDOMDocument. This is what I want to do in JScript:
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
xmlDoc.loadXML("Some XML code");
How do I do this in C#? Also, is there any good documentation for the infopath object model in C#? The Infopath 2003 Toolkit for Visual Studio help menu only named the objects and methods but did not have any descriptions or examples. There's good documentation for JScript and VBScript but I couldn't find any examples using C#. Is there a good place out there to find this? Thanks!
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument");
xmlDoc.loadXML("Some XML code");
How do I do this in C#? Also, is there any good documentation for the infopath object model in C#? The Infopath 2003 Toolkit for Visual Studio help menu only named the objects and methods but did not have any descriptions or examples. There's good documentation for JScript and VBScript but I couldn't find any examples using C#. Is there a good place out there to find this? Thanks!