Slow Performance from Visual Studio

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hello there,

Ive just taken over an existing project and I'm getting painfully slow
performace from Visual Studio....Developer Express components are fairly
heavily used, which I suspect is half the problem...

My question is, will using user controls help this issue? or is that just
going to compound issues...
Does anyone have any tips on getting better performance from using correct
programming techniques?

Thank you for any ideas
John Sheppard
 
The DevExpress components may be part of the problem, but also look at the
following:

1. Amount of memory on your box
2. Number of projects in the solution (if many, consider compiling those you
are finished with and referencing the compiled assembly)
3. Refactoring add ins, like Resharper (especially on start up of the
solution)
4. Your anti-virus program (some can really bog down VS)
5. Number of files open at one time (especially if using a refactoring add
in)

The more code you move out of code behind (and App_Code) into other
libraries, the faster the response time, especially if you can compile some
of the libraries and not have them open as source.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 
Cool Thanks Gregory,

That all sounds like good advice, The puta has got 4GB of ram...He had a
refactoring tool working but I took that out, that was chunky....

One other thing I neglectied to mention is that there is one mother of a
huge dataset where he has clumped the whole database structure...It doesnt
seem like a healthy way to do things, but Im not knowledable enough to know
better....just making a change to it makes me cringe as its almost a 10%
chance VS will lock up...

Thank you
John
 
Back
Top