Atul
Atul

Reputation: 765

Right Pop up menu coming slowly

When i right click in the text editor in Visual studio 2008 IDE, the Pop Up menu comes at a slower pace. Is there any setting in visual studio that can control this behavior?

Upvotes: 5

Views: 2317

Answers (3)

JDiMatteo
JDiMatteo

Reputation: 13130

The problem is possibly a timeout trying to connect to a Visual Studio Team Foundation Server. To disable this in VS 2012:

Tools > Options > Source Control > Plug-in Selection > Current Source control plugin-in > None

This worked for me and I read about it in a comment on this answer: https://stackoverflow.com/a/3467989/1007353 .

Upvotes: 1

hardyVeles
hardyVeles

Reputation: 1142

After a windows crash my IntelliSense context menu (when clicked over a member/class/declaration) became very slow (~10s to open it). Solution was to close my VS2012, and delete solution cache files (solutionname.suo).

Keep in mind that .suo files are hidden.

After reloading the solution all came back to normal!

Upvotes: 5

Raiv
Raiv

Reputation: 5781

You may make VS GUI faster by disabling animation. Uncheck "Animate environment tools" checkbox in tools - options - environment - general. This may help...

Upvotes: 2

Related Questions