If an invalid RTF string is assigned to the Rtf property of the VB6 RichTextBox control, value is usually regarded as plain text and assigned to the Text property. However, this behavior isn’t fully consistent; for example, it may happen that curly braces embedded in the string are discarded. You can prove this by executing the following VB6 code:
Me.Rtf1.Rtf = "Test String"
Me.Rtf1.Rtf = "Text {0}"
Me.Rtf1.Rtf = "{Text}"
By contrast, the .NET RichTextBox control has a more predictable behavior: when an invalid RTF string is assigned to the Rtf property a runtime exception is thrown. The VB6RichTextBox control adopts the following compromise: it attempts to assign the Rtf property and, if the assignment fails, the value is assigned to the Text property. In other words, an assignment to the Rtf property can never raise an error in an application that has been converted to VB.NET.
However, some VB6 application might require that an error be raised for invalid RTF strings. For example, this behavior is desirable if the application has to validate an RTF string. In these cases, you can assign True to the ErrorOnInvalidRtf Boolean property that the VB6RichTextBox control exposes. You can set this property by means of an InsertStatement pragma or a WriteProperty pragma: