Hi,
Below code is to add a row to a repeating table.
//write get the XML of repeating node into a string
string sRepeatingXml = "XML";
//create a Dom for the XMLNode
IXMLDOMDocument oXml = thisXDocument.CreateDOM();
oXml.async = false;
oXml.loadXML(sRepeatingXml);
//Get the Parent of the repeating table
ixmldomNode parentofRepeatingNode = getNode("Xpath");
//append the repeating XML Element to the Parent node
parentofRepeatingNode.appendChild(oXml.documentElement);

Signature
k.Ramana Reddy
http://www.autonomysystems.com
> Hi,
> can someone help tell me, how i can add a row to a repeating table
> programmatically in c#?
> I am using Infopath 2007.