Using HTML Tags for formatting in InfoPath Rich Text Box Control
Hi,
We had a requirement to format custom error messages that we were displaying in the rich text box control inside InfoPath Form.
For this we can use AppendChild method of XPathNavigator object.
For e.g. below is the html we need

The code that we need to use
XPathNavigator richTextField = domNav.SelectSingleNode(“/my:myFields/my:field4”, NamespaceManager);
richTextField.AppendChild(“<h2 xmlns=\”http://www.w3.org/1999/xhtml\”>Error Message Header</h2><p xmlns=\”http://www.w3.org/1999/xhtml\”>This is my custom <font xmlns=\”http://www.w3.org/1999/xhtml\” size=\”3\” color=\”red\”> error </font> message.</p>”);
The output

We need to define namespace for each tag used else we get exception.
The helpful post
http://www.bizsupportonline.net/infopath2007/how-to-render-html-in-rich-text-box-infopath.htm
Hope it helps..
Filed under: InfoPath Tagged: InfoPath
This was originally posted here.

Like
Report
*This post is locked for comments