Two suggestions:
1: Remove the default key binding for F1 using Tools> Options> Environment> Keyboard> Help. .F1 Help
Then write a small macro (different ways to do this, of course) to launch the browser with the default URL, for example.
Sub OpenChromeWithURL() Dim url As String = "http://msdn.microsoft.com" 'launch browser System.Diagnostics.Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\Google\Chrome\Application\chrome.exe", url) End Sub
You can now assign a keyboard shortcut to this macro, as described above. Go to Tools> Options> Evnironment> Keyboard. Find Macro.OpenChromeWithURL and assign a shortcut to your macro. An explanation of how to assign a keyboard shortcut can be found here: How do I match a Visual Studio macro with a keyboard shortcut?
2: Download the MSDN Library
for Visual Studio 2008 Service Pack 1 (SP1) source share