2

I want to show message like "New version of software is available at http://mysite.com" and so "http://mysite.com" part would be clickable. Is it posible using some built in Winforms message dialog ?

Vladimir Berezkin
  • 3,580
  • 4
  • 27
  • 33

1 Answers1

2

No. You can't.

You will need to create your own Dialog box.

An example on CodeProject: a custom messagebox

EDIT:

Apparently there is a way: Clickable URL in a Winform Message Box?

MessageBox.Show(     
    "test message",
    "caption",
    MessageBoxButtons.YesNo,     
    MessageBoxIcon.Information,
    MessageBoxDefaultButton.Button1,
    MessageBoxOptions.LeftAlign,
    "http://google.com",
    "keyword"
) 
Community
  • 1
  • 1
dampee
  • 3,392
  • 1
  • 21
  • 37