Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • Any programs you recommend for Windows 7 64bit? Commented Jan 5, 2012 at 16:43
  • Quick&dirty profilng: debug a release build and break the process at random times. You'll gain an insight in what part of the code takes most of the time (statistically). Commented Jan 5, 2012 at 16:53
  • You might also want to look at Process Monitor, which will show you what system calls are being used by a given process, if those might be the cause of waits and slowdowns. Commented Jan 11, 2012 at 0:16
  • @greyfade Thanks for suggestion, downloading. I figured out my program is very slow reading for the database (Access file). Hopefully this will help me out. Commented Jan 11, 2012 at 15:46