Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When a compile fails in VB.NET in Visual Studio 2008, an Error List pops up at the bottom of the screen. To jump to an error, I double click on an error in the error list.

Is there a shortcut to automatically jump to the next error in the list? It gets a little bit tedious at times having to reach down and double click a list that I like to keep collapsed.

share|improve this question

2 Answers

up vote 50 down vote accepted

F8 (and shift-F8 to go backwards).

Or at least that's what it is in my keyboard profile - you can go to tools\options\environment\keyboard and check out Edit.GoToNextLocation.

Note If you configured Visual Studio using VB keyboard settings, no key has been assigned to this function. You need to pick your own and assign them.

share|improve this answer
3  
If you configured Visual Studio using VB keyboard settings, no key has been assigned to this function. You need to pick your own and assign them. – Bill Nov 9 '09 at 13:01
Works with C++ projects, too. – ahans Apr 18 at 14:18

Funny because i use CTRL+SHIFT+F12 which is View.NextError

I wonder what's the difference between View.NextError and Edit.GoToNextLocation

share|improve this answer
4  
Edit.GoToNextLocation works also when you navigate through search in files results – GôTô Aug 24 '12 at 10:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.