ActiveReports6 Assembly > DataDynamics.ActiveReports Namespace > RichTextBox Class : Html Property |
You can bind a RichTextBox control to html in a database, but the text in the database must start with <HTML>. If the html in your database does not start with <HTML>, you can set the DataField property to ="<HTML>" + DataFieldName at design time, or set it at run time by using the following code:
private void Detail_Format(object sender, System.EventArgs eArgs){ this.RichTextBox1.Html = "\n" + this.RichTextBox1.Text;}
private void reportHeader1_Format(object sender, System.EventArgs e) { RichTextBox1.Html = RichTextBox1.Text; }
Private Sub ReportHeader1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ReportHeader1.Format RichTextBox1.Html = RichTextBox1.Text End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2