Visual Studio tip: quickly navigating between search results with F8
Posted: (EET/GMT+2)
Suppose you want to review references to certain text string in all your project's source files. You could conveniently search for the string with the Find in Files command (Ctrl+Shift+F), and then double-click each of the result lines in the Find Results window.
However, there's even a faster way: press F8 instead. Once you have completed the search and the results are seen in the Find Results window, you can simply press the F8 function key to go the next hit. This key combination works directly in the code editor, allowing you to go to the next occurrence very quickly. Technically, this is the "Edit.GoToNextLocation" editor command.
Hope this helps!