i have developed a windows application and installed it to client pc....
it running very slow on client pc but it runs very fast on my pc
my pc having dual core cpu and client's i3 processor.
Is there any solution?
Plz help me
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Afzaal Ahmad ZeeshanPosted Nov 14, 2015, 12:50 AM
- Remove any unwanted variables from the memory. Variables take many CPU cycles to create and remove from the RAM.
- Consider removing any string concatenations being used. Instead of concatenating the string, you should use StringBuilder to build the strings.
- Use Visual Studio's application profilers to see how much CPU and RAM is being used in which functions and then fine-tune them to make it better.
Most of the times, the application acts bad because of the architecture being used. If application uses network resources or other similar stuff, and has a graphical user interface. I would recommend that you use Asynchronous Programming model. It would let you make the application process smoothly.Banketeshvar NarayanPosted Nov 14, 2015, 12:54 AM