Hyperlinks can be used in the viewer control to allow users to link to a bookmark in the report "toc://bookmark" or to a properly formatted internet target location (http, ftp, etc).
Clicking a hyperlink in the viewer control raises the HyperLink event.
Note: When using the HtmlViewer or the RawHtml to display a report, you should indicate the full URL address (for example, "https://developer.mescius.com") for this property.
private void detail_Format(object sender, System.EventArgs eArgs) { this.textBox1.HyperLink = "mailto:support@company.com"; this.textBox1.Text = "Email support."; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.TextBox1.HyperLink = "mailto:support@company.com" Me.TextBox1.Text = "Email support." End Sub