How do I click links in a Visual Studio resume?

It seems to me that this should be obvious, and maybe I missed something at all, but how do I click the URLs from the resume ?

Below is an example screenshot of what I'm talking about. (Obviously, in this case, since this is a warning, I can copy the warning from the error list window, paste it into a text editor, extract the URL, then use my browser. In other cases, I would have to type on the screen, enter url. In any case, both of these approaches are time consuming)

enter image description here

"Other cases" will result from viewing a summary from other binaries where the developer used summary tags ie

/// <summary>
/// Visit http://www.google.com for more info
/// </summary>        
static void foo()
{
}

I cannot hover over the resulting field to click a link without disappearing.

, , ( ) .

+5
1

, - (. ). , Microsoft .

Sub OpenURLInChrome()
'copy to end of line
DTE.ActiveDocument.Selection.EndOfLine(True)

'set var
Dim url As String = DTE.ActiveDocument.Selection.Text

'launch chrome with url
System.Diagnostics.Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\Google\Chrome\Application\chrome.exe", url)
End Sub
+1

All Articles