Last position..

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Probably a really obvious question but...

In vb6 when writing code, there was a last position option in the context
menu to allow you to jump back to the last proceedure youi were editing.

Is there a vb.net equivalent as it's driving me mad not having it !

Cheers

Mark
 
Is there a vb.net equivalent as it's driving me mad not having it !

I don''t think there is (atleast in VS 2003), but IMHO, if you use Code
outlining efficiently, navigating the code is no longer a problem at
all.
 
Hello, Mark,

I use the key combination <Ctrl><Minus> for this purpose. You can use
it multiple times to navigate backwards through the list of previous
locations. (Using <Ctrl><Plus> will navigate forwards through the
list.) I also find bookmarks to be helpful. Use <Ctrl><K> twice to
toggle a bookmark. Then use <Ctrl><K> plus <Ctrl><N> to move forwards
through your bookmarks, or <Ctrl><P> to move backwards.

Cheers,
Randy
 
That's great

Many thanks for your help.


R. MacDonald said:
Hello, Mark,

I use the key combination <Ctrl><Minus> for this purpose. You can use it
multiple times to navigate backwards through the list of previous
locations. (Using <Ctrl><Plus> will navigate forwards through the list.)
I also find bookmarks to be helpful. Use <Ctrl><K> twice to toggle a
bookmark. Then use <Ctrl><K> plus <Ctrl><N> to move forwards through your
bookmarks, or <Ctrl><P> to move backwards.

Cheers,
Randy
 
Back
Top