Moving in IDE from procedure to procedure

  • Thread starter Thread starter Billy
  • Start date Start date
B

Billy

Anybody know if maybe in VS 2003 IDE exist any keyboard shortcut for
quick moving from one procedure up or down like is that in VBA IDE? I
can't find anything about that in help under Keyboard shortcuts.

In VBA you press Ctrl+UpArrow or Ctrl+DownArrow and you move quickly to
second line of next or previous procedure. Actually the same work in Ms
Word for quick moving from paragraph to paragraph. It's seem to me very
handy and I miss that here.

Regards,
Billy
 
I tried that and there is no such shortcut inside mztools. Any more
ideas?

If any one from MS read that: That is a wish to be BACK in VS2005,
because it is very handy.

Regards,
Billy
 
In MZTools there are

Go to beginning of Class
Go to end of Class
Go to beginning of Procedure
Go to end of Procedure

You can assign keyboard shortcuts to each of these.

If you want to move between procedures, try creating a macro that uses Find
on a regular expression to locate the next (or previous) Function, Sub, or
Property.

Charles
 
That's quite easy to do with my add-in too, because you can use its Find
feature to locate Sub, Function or Property (excluding the "End " word if
you want through a regular expression), and then you can hide the results
window and use the MZTools4.NextResult and MZTools4.PreviousResult commands
on the toolbar or through keyboard bindings.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top