Reputation: 61502
For some reason my Visual Studio Find dialog, which usually shows instantly after I press Ctrl+F, has started to take more than 2 seconds to show. During this time Visual Studio is entirely unresponsive.
2 seconds for a small window to show is outrageous :) Restarting VS or rebooting the machine didn't help. Has anyone seen this before? How can I fix this?
OS: Vista x64; Defrag: Weekly, at night
Upvotes: 2
Views: 986
Reputation: 1
It must be Aero mode, which causes the problem:
Here is my timing:
Upvotes: 2
Reputation: 61502
Fixed by reinstalling Visual Studio.
P.S. This has happened again; here's what I observed this time:
Upvotes: 0
Reputation: 73341
While your issue is very specific and would be hard to answer, without a lot more detail.
Look through this question on optimizing Visual Studio.
If these don't speed it up, I would look to Microsoft for support.
Upvotes: 1
Reputation: 8216
I like to use ctrl-f3. You just position your cursor on the word you want to find, and it will allow you to step through each occurance by pressing f3
Edit: Another option would be to dock the find dialog - so it doesn't require closing and reopening.
Upvotes: 4
Reputation: 307
Have you tried deleting the project's .ncb file? It's where VS stores Intellisense data and it seems to just grow forever as the project changes. It will be automatically recreated by VS without all the cruft if you just delete it.
Upvotes: 0
Reputation: 5787
CodeRush Xpress (free add-on) has a useful 'Quick Find' feature that tracks down line numbers, text matches, etc.
Upvotes: 0
Reputation: 8301
I find that intellisense drains a lot of resources. Since I don't need it (using Visual Assist X) I disabled it. Also see this StackOverflow question containing more info.
Upvotes: 1