I was just wondering if there is a Back button in Visual C++ 6.0.

For instance, if you do a "Go to Definition", the "Back" button would
take you back.

I can't seem to find it.

Thank you.

Re: Back button by Victor

Victor
Tue Feb 27 13:12:31 CST 2007

mike7411@gmail.com wrote:
> I was just wondering if there is a Back button in Visual C++ 6.0.
>
> For instance, if you do a "Go to Definition", the "Back" button would
> take you back.
>
> I can't seem to find it.

There is none, AFAICT. You could try setting the option to add
cursor positioning into the Undo buffer and then just undo the
movements... Not sure it's going to work, though. Use bookmarks.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask



Re: Back button by Stuart

Stuart
Wed Feb 28 02:18:39 CST 2007

mike7411@gmail.com wrote:
> I was just wondering if there is a Back button in Visual C++ 6.0.
>
> For instance, if you do a "Go to Definition", the "Back" button would
> take you back.
>
> I can't seem to find it.

Because there is none. I'd advice you to invest the 150$ for Visual
Assist X Plugin, without which Visual Studio is barely usable.

Regards,
Stuart

Re: Back button by Alex

Alex
Wed Feb 28 06:24:02 CST 2007

<mike7411@gmail.com> wrote:
> I was just wondering if there is a Back button in Visual
> C++ 6.0.
>
> For instance, if you do a "Go to Definition", the "Back"
> button would
> take you back.
>
> I can't seem to find it.


There is `BrowsePopContext' IDE command in VC6 (shortcut
key: CTRL+Num *). It will bring you back to starting point
after `BrowseGoToDefinition' (F12) command.

Alex