views:

259

answers:

5

I am learning .Net after many years of Java programming. In Eclipse we have Ctrl Shift R to open any resource in the project. Is there a similar keystroke in Visual Studio 2008 or is the best to use the Find in Files? Thanks, Tom

A: 

Ctrl+F... like anything else on your PC :)

EDIT You can also use the Solution Explorer and just pin it to the side of your screen: Ctrl + Alt + L

Jason
+1  A: 

There appears to be an article describing how to mimic that functionality in VS.

Matthew Jones
Thanks for the article looks promising.
This seems like an answer to me.
Ravisha
A: 

Actually, I'm not sure exactly what you're trying to do, since I don't use Eclipse, but what's been described looks like ctrl-D(Edit.GotoFindCombo) followed by

> of myfilename

of is the shortcut for openfile. Note that ctrl-D+> can be used for any visual studio command, including macros.

Bahbar
A: 

An easier solution if your prepared to pay a small sum of money is to use ReSharper. It is based on IntelliJ IDEA and has all the same features you would expect from Eclipse (navigation, refactoring etc), but with slightly different key mappings.

If you use the IntelliJ IDEA key mappings you can achieve what you are looking for using this shortcut.

Ctrl + Shift + N

Shanon M
A: 

I've been using a VS add-in called QuickOpen for 6 months and it's been invaluable (on VS2008). It'll do wildcard searches, too, so you can find not only your ASPX files but also the code behind and associated resource files. Super handy.

Aaronster