Right-clicking in VC7 editor is slow

  • Thread starter Christian Stigen Larsen
  • Start date
C

Christian Stigen Larsen

Hi all,

when editing my C++ programs in VC++ 7.0 simply right-clicking in the editor
window or pressing F9 to set or unset breakpoints is slow -- it takes around 12
seconds before anything happens!

Is there any way of getting rid of this delay?

I'm using Microsoft VC++ 7.0 (Version 7.0.9466, .NET Framework Version
1.0.3705) on a 3GHz Windows 2000 system.
 
W

Wernfried Schwenkner

when editing my C++ programs in VC++ 7.0 simply right-clicking in the editor
window or pressing F9 to set or unset breakpoints is slow -- it takes around 12
seconds before anything happens!

Did You install the NUnit-AddIn for Visual Studio? I've done this. This
AddIn parses the code the detect if You clicked within a valid test
fixture. This is only done for C# and so the parser takes a lot of time
on C++ programs.
 
C

Christian Stigen Larsen

Quoting Wernfried Schwenkner <[email protected]>:
|> window or pressing F9 to set or unset breakpoints is slow [...]
|
| Did You install the NUnit-AddIn for Visual Studio? [...]

I don't think so; I unchecked the entire Visual C# branch in the installation
program, so I guess not.
 
J

jcansdale

Did You install the NUnit-AddIn for Visual Studio? I've done
this. This AddIn parses the code the detect if You clicked
within a valid test fixture. This is only done for C# and
so the parser takes a lot of time on C++ programs.
For some reason parsing the code was causing the button state to b
checked, which caused the code to be parsed, which caused the butto
state to be checked......

Sorry about that, it was very anoying! I've now disabled this check.
You can find the fixed version here...

http://weblogs.asp.net/nunitaddin

Thanks, Jamie


-
jcansdal
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top