Me.UltraFormattedLinkLabel1.Value = _ "<a href=""www.infragistics.com"">Infragistics</a>"
The WinFormattedLinkLabel™ control can create a clickable link in any Ultimate UI for Windows Forms control that uses embeddable editors. You can also use this control individually to create a simple link on a form. To create a link on a form with the WinFormattedLinkLabel control, drag the control from your toolbox onto the form (you can also double-click the control and it will be placed in the default position on the form). Once the control is on the form, make sure the control is selected and go to the Properties window. Set the Value property to "<a href=""www.infragistics.com"">Infragistics</a>". If you prefer to set the Value property in code, refer to the code below.
WinFormattedLinkLabel can recognize several HTML tags such as <strong>, <em>, <u>, and <font>. For a full list of supported HTML tags, see Formatting Text and Hyperlinks.
In Visual Basic:
Me.UltraFormattedLinkLabel1.Value = _ "<a href=""www.infragistics.com"">Infragistics</a>"
In C#:
this.ultraFormattedLinkLabel1.Value = "<a href=\"www.infragistics.com\">Infragistics</a>";