Debug Visual Studio F1 Help

What can you do if Visual Studio F1 Help is broken or not working?  Behind the scenes, Visual Studio maintains a help context that it passes to the help system when you press F1.  The help system then displays the topic that best matches your context.  A good first step in debugging F1 problems is understanding the information that Visual Studio is passing to the help system.

This post includes instructions for both Visual Studio 2010 and Visual Studio 2012.

Debugging Visual Studio 2012 F1 Help

To see the help context, add the following entry to your registry:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\Dynamic Help
"Display Debug Output in Retail" = "YES"

Detailed instructions follow:

  1. Close Visual Studio.
  2. Launch the Registry Editor (regedit.exe)
  3. Navigate to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\Dynamic Help.  By default, the Dynamic Help key has the following string values: 
    registry-before
  4. Right click on the Dynamic Help key and select New | String Value.
  5. Right click on the default name of the new string and change it to "Display Debug Output in Retail".  Ensure that the string type is “REG_SZ”.
  6. Double-click on the string name you just entered and change the Data field to "YES" and click the OK button.
     keyvalue
  7. Verify that your entry is correct:
    registry-after
  8. Close the Registry Editor.
  9. Launch Visual Studio.
  10. Click on Debug Help Context in the Visual Studio Help menu to launch the Debug Help Context pane.
    helpmenu

The Debug Help Context Pane

As you click around inside Visual Studio, you’ll see the properties in the Debug Help Context pane change dynamically.  This is the information that is passed to the help system when you press F1.

dhc

The importance and meaning of the help context properties deserve a separate blog post.  Properties of note include:

  • Keywords are added and removed to the help context depending on the location of the cursor in the editor or design surface.  When selecting a topic to display, the help system will prefer higher priority keywords over those with lower priority.
  • LCID is the human language of the Visual Studio IDE (English, French, etc.).  The help system uses it to select the correct content locale.
  • TargetFrameworkMoniker is of importance to managed code developers as it specifies the version of the runtime being used.

Debugging Visual Studio 2010 F1 Help

Add the following entry to your registry to enable the Debug Help Context pane in VS 2010:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Dynamic Help
"Display Debug Output in Retail" = "YES"

Once you’ve done this and restarted Visual Studio, click on Debug Help Context in the Visual Studio Help menu to launch the Debug Help Context pane.  Note that the detailed steps for doing this are the same as I described above for VS 2012.

dhc2010

This entry was posted in Visual Studio 2010, Visual Studio 2012 and tagged , . Bookmark the permalink. Both comments and trackbacks are currently closed.
%d bloggers like this: