Hi,
I desperately need this functionality in the VC++ 2k5 IDE: If I'm in some
class's header file, lets say "portlistener.h", I press a key and goto its
corresponding cpp file, which in this case will be "portlistener.h". If in
*.h file it should goto *.cpp and vice versa.
I use the ctrl+tab key *a lot* but that switching between header and source
file will be awesome.
Regards,
Ab.
Mihajlo Cvetanović - 20 Apr 2006 13:28 GMT
> I desperately need this functionality in the VC++ 2k5 IDE: If I'm in some
> class's header file, lets say "portlistener.h", I press a key and goto its
[quoted text clipped - 3 lines]
> I use the ctrl+tab key *a lot* but that switching between header and source
> file will be awesome.
If you have Visual Assist the key is Alt+O. If you don't have it, give
it a try.
Carl Daniel [VC++ MVP] - 20 Apr 2006 15:05 GMT
> Hi,
>
[quoted text clipped - 6 lines]
> I use the ctrl+tab key *a lot* but that switching between header and
> source file will be awesome.
Visual Studio doesn't have that function, but you can create it yourself.
See
http://www.codeproject.com/macro/hcppswitchermacro.asp
for a macro that you can install in VS to perform this function - once
you've got the macro installed, you can assign a keystroke to invoke it.
-cd