views:

16

answers:

1

Does anyone know how to switch between the major tabs/pages in Visual Studio's C# project settings editor, using only the keyboard? I'm talking about the things along the left side that are labeled Application, Build, Debug, Resources, Settings, etc. It works fine to Tab between the controls on the currently selected page, but I haven't figured out how to switch between pages, and I like to avoid leaving the keyboard as much as possible.

The page that I most frequently want to access is the Debug page, so a shortcut that takes me directly to that page would be fine even if there wasn't a general method. I tried the Project.StartOptions command, but that doesn't seem to be it.

+5  A: 

Ctrl+Pg Up and Ctrl+Pg Down will navigate between those tabs/pages.

Jim Lamb
Awesome! Stack Overflow to the rescue.
Charlie