if you are using Visual Studion Tools for Office (VSTO) then you can
write following code to access the xml node for your text box...
XPathNavigator root = this.MainDataSource.CreateNavigator();
Now access the property value using following statement.
root.SelectSingleNode("/my:myFields/
my:userName",this.NamespaceManager).Value) = "AnyValue";
On May 16, 7:13 am, Arthur Pendragon
<arthur.pendragonofcame...@gmail.com> wrote:
> Hi all,
>
[quoted text clipped - 12 lines]
> Regards,
> Arthur
K.Ramana Reddy - 03 Jul 2007 08:54 GMT
Hi,
First you need to get the textbox reference using xpath. see below.
string name = XDocument.DOM.selectSingleNode("Xpath of your textbox")
then
name.text="enter text"
or
XDocument.DOM.selectSingleNode("/my:myFields/my:field1").text="enter text"
I hope this will help for you.

Signature
k.Ramana Reddy
http://www.autonomysystems.com
> if you are using Visual Studion Tools for Office (VSTO) then you can
> write following code to access the xml node for your text box...
[quoted text clipped - 23 lines]
> > Regards,
> > Arthur