vote up 1 vote down star

In Visual Studio, is there a quick way to search for an object's usage in the code behind? This is something I do constantly and the way I am currently doing it seems a little clunky.

I am using VS2005, WinForms, VB and CodeRush/RefactorPro.

Currently I do the following steps: In Design View

  1. Click the Object.
  2. In the Properties Dialog, double click the Name of the object
  3. Copy it to the clipboard (Using Ctrl-C or Right Click and selecting Copy)
  4. Press F7 to bring up the code behind editor
  5. Press Ctrl-Home to position to the top of the file.
  6. Press Ctrl-F, which brings up the Find Dialog
  7. Press Ctrl-V, to paste in the name of the object into the "Find what:" text box.
  8. Tap ENTER to start the Find.

Ideally, I would like to click the object in Design View then hit a hot key to do these other steps.

If VS2005 does not have anything built in, should I research using a Macro?

flag

52% accept rate

3 Answers

vote up 0 vote down

CodeRush has "Quick Nav" (CTRL+SHIFT+Q) for symbols

Screenshot of CodeRush's Quick Navigation

link|flag
vote up 1 vote down

I don't know about any functionality like that, built-in visual studio, however, you can use the wonderful plugin Resharper from JetBrains which has that functionality, as many other excellent features...

There is also another add-on called CodeRush, I haven't used it but it seems to be worth a look.

link|flag
I am using CodeRush. Does anyone know if it has this feature? – Gerhard Weiss Sep 8 at 19:01
Do you know the name resharper gives this functionality? How is it invoked? (i.e. what key sequence, mouse clicks is need to run it.) – Gerhard Weiss Sep 8 at 19:26
Right click on your class or object and select Find Usages. – mxmissile Sep 8 at 20:26
Or with ALT+f7 or CTRL+Alt+F7 – Jhonny D. Cano -Leftware- Sep 8 at 20:57
Search for the White Paper for ReSharper JetBrains, I don't remember where i get it, but is very useful, I have it in front of my desk – Jhonny D. Cano -Leftware- Sep 8 at 20:58
vote up 1 vote down

If 3rd party addons are allowed, install R# and use the Find Usages tool. Although not sure R# would be worth it just for this feature alone.

link|flag

Your Answer

Get an OpenID
or

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