Welcome to MSDN Blogs Sign in | Join | Help

News

  • Welcome to my Microsoft weblog. I'm a Lead Software Design Engineer in Test with the XNA Communities Team. Hopefully the posts in this blog will be insightful to into XNA, but also have other fun tidbits about things at Microsoft.
     
    Notice
    This posting is provided "AS IS" with no warranties, and confers no rights. Use of any included script samples are subject to the terms specified at http://www.microsoft.com/ info/cpyright.htm
InfoPath C# Node binding Controls tips

I got a request earlier today to help out with writing a node-binding C# control for InfoPath and I thought I'd share with people the two important parts.

1. Make sure you have the MSXML reference 
      Microsoft XML, v5.0 is what you're looking for in the References dialog (in VS)


2. Make sure you have a binding property which is an MSXML node:

public MSXML5.IXMLDOMNode Value

{

get { return node; }

set { node = value; }

}

Posted: Monday, August 01, 2005 5:41 PM by ajma

Comments

No Comments

New Comments to this post are disabled
Page view tracker