Recent content by akjones

  1. A

    [SOLVED] Windows 10 slower than Windows 7?

    I did find another solution to raise the priority of the app, not ideal that you have to do this but:- Dim myProcess As System.Diagnostics.Process = System.Diagnostics.Process.GetCurrentProcess() myProcess.PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal Windows 7 was never...
  2. A

    [SOLVED] Windows 10 slower than Windows 7?

    Hi Thanks for the quick response. I tried the process priority and it certainly improves/cures the problem. I can invoke a Shell command from within the code to do this as the process priority change is lost when the app restarts. I never thought about using a Hi res timer within the code as...
  3. A

    [SOLVED] Windows 10 slower than Windows 7?

    Having used DOS, Windows since W3.x, 95, ME WNT, W2K, etc..etc and Windows 7 since it's release and making the jump to Windows 10 just over a year ago, I have come to the conclusion that Windows 10 is not as deterministic (not sure if this is the correct word) as Windows 7. I use Visual Studio...