Hi,
I want to continually add new text to a rich text field upon button presses in InfoPath 2007 using code. I know how to set a fields value using this line of code:
Dim nav As
XPathNavigator = MainDataSource.CreateNavigator()
nav.SelectSingleNode("//my:field1",
NamespaceManager).SetValue("myValue")
I'm just not sure how to incorporate it into this. My intention is to create an edit history of the button presses in my form. If anyone has any material on a better way to do this or or keep track of changes throughout the whole form I would take that into consideration as well. Thank you.