In Visual Studio 2010, how to quickly switch from an .h file to the corresponding .cpp file?

Possible duplicate:
Is there a shortcut to move between the header and the source file in VC ++?

How can I easily switch between the .h file and its corresponding .cpp file?

Visual Studio provides half the solution: if I work in myfile.cpp , I can right-click and select Go To Header File. But if I have a header file open, there is no easy way to switch to the corresponding .cpp file.

What would be even simpler is a button similar to the Go To Counterpart button in Xcode, which simply switches between .h and .cpp .

There must be an extension for this, but I did not find it.

+4
visual-c ++ visual-studio ide
Nov 29 '10 at 22:40
source share

No one has answered this question yet.

See similar questions:

94
Is there a shortcut to move between the header and the source file in VC ++?

or similar:

801
Should I add Visual Studio.suo and .user files to the source control?
745
How do I "add an existing item" to the entire directory structure in Visual Studio?
741
How do you format code in Visual Studio?
726
How to add an existing directory tree to a project in Visual Studio?
618
How to rename a project folder from Visual Studio?
613
What do you think lines of code in a Visual Studio solution?
511
Open two file instances in the same Visual Studio session
302
Visual Studio 2010 - Recommended Extensions
178
Is there a way to quickly find files in Visual Studio 2010?
2
What is the VS2010 key combination to display the header file?



All Articles