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 ?
            Asked
            
        
        
            Active
            
        
            Viewed 396 times
        
    2
            
            
        - 
                    2Possibly a duplicate of http://stackoverflow.com/questions/1833747/clickable-url-in-a-winform-message-box – Matthew Steeples Jan 20 '11 at 08:14
1 Answers
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"
) 
 
     
    