I have a button for users to click which displays a MessageBox containing support contact details for my app. One of those details is an email address, is it possible to embed a clickable link in the MessageBox that will open up the users' default email app? 
            Asked
            
        
        
            Active
            
        
            Viewed 919 times
        
    1
            
            
         
    
    
        James
        
- 3,957
- 4
- 37
- 82
1 Answers
2
            MessageBox won't do that, but a custom dialog might. Here's an MFC solution. Here's a C# 'solution' (more like a workaround), that you might be able to use almost as-is in C++-cli.
 
    
    
        Community
        
- 1
- 1
 
    
    
        Ofek Shilon
        
- 14,734
- 5
- 67
- 101
- 
                    Thanks, got something working now that does the job. – James Jul 08 '14 at 13:24