P
Pablo Clavel
Hi everybody.
I have developed an activex control (.net) and I putted it into Infopath.
Through the "Value" property I want to give data to the activex when an
Infopath button is pressed. The activex use the field1. I have a field2, and
the button wants to assign the field2 text into the activex.
I tried this:
IXMLDOMNode node1 = this.thisXDocument.DOM.selectSingleNode("//my:field1");
IXMLDOMNode node2 = this.thisXDocument.DOM.selectSingleNode("//my:field2");
node1 .text = node2.text;
It doesn't do what I expect.
Can you help me?
I have developed an activex control (.net) and I putted it into Infopath.
Through the "Value" property I want to give data to the activex when an
Infopath button is pressed. The activex use the field1. I have a field2, and
the button wants to assign the field2 text into the activex.
I tried this:
IXMLDOMNode node1 = this.thisXDocument.DOM.selectSingleNode("//my:field1");
IXMLDOMNode node2 = this.thisXDocument.DOM.selectSingleNode("//my:field2");
node1 .text = node2.text;
It doesn't do what I expect.
Can you help me?