0

I have a custom Message box ,i use to pop up my xml data inside th custom message box.

I have no idea how to hyper link some particular tag ,for me i need to hyperlink tag in the data.

am populate the message inside textbox in my custom messgae box.

Hyperlink

public void Show (string text)
        {
            txtMessage.Text = text;
            //ChooseButtons(MessageBoxButtons.OK);
            this.ShowDialog();
Tim Rogers
  • 21,297
  • 6
  • 52
  • 68
Usher
  • 2,146
  • 9
  • 43
  • 81

1 Answers1

0

You may want to use the RichTextBox Control. Take a look at the information in this link:

How to: Display Web-Style Links with the Windows Forms RichTextBox Control

-Amulya

Amulya Khare
  • 7,718
  • 2
  • 23
  • 38
  • Thanks Amulya but no code sample to get some understanding about how it works. – Usher Aug 24 '11 at 09:02
  • check this : [link](http://stackoverflow.com/questions/435607/c-how-can-i-make-a-hyperlink-work-in-a-richtextbox) – CB. Aug 24 '11 at 09:12