topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 6:36 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: There is Sometimes a Long Delay to Open up the Quick Paste Menu  (Read 4083 times)

viking2

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 9
    • View Profile
    • Donate to Member
There is sometimes a long (~5 sec) delay to open up the Quick Paste Menu. I have not been able to out find exactly when that happens. Has anyone else experienced this? Any solutions?

Shades

  • Member
  • Joined in 2006
  • **
  • Posts: 2,922
    • View Profile
    • Donate to Member
Re: There is Sometimes a Long Delay to Open up the Quick Paste Menu
« Reply #1 on: February 18, 2021, 10:07 PM »
The Windows file system is actually quite similar to a database. And databases are know to have queries that take much more time than expected. This is also know as an "expensive" query.

If the data inside the filesystem is somehow damaged or stored on slow(er) data blocks from the hard disk, getting something as simple as a menu can take quite some time. It might prove useful to open the command-line and type in there:
CHKDSK C: /F

The command-line version of the Check disk functionality in Windows is much more powerful than the option in Windows itself. The command-line version will ask you to reboot your system. During reboot, your computer will ask if the test should be interrupted. Select here 'No'. After that you will need patience until it is finished. How much patience? That depends on the storage capacity of the drive, the state of the drive, the available resources in your computer etc.

If available, Windows will move file system data around onto faster data blocks as part of the repairs it can execute. And that improves the opening of menus in Windows, because queries have become much "cheaper".

But sometimes a drive has gotten so slow-(ish) that CHKDSK won't help anymore. Tools like 'HD Sentinel Standard' (often offered for free) take a look at the state of your hard disk using S.M.A.R.T., which is functionality built into all hard drives of any type that have been produced the last 20 years or even longer. There are alternative programs for Windows that do the same for free or a small fee.

Still, if your computer is doing tasks in the background, those tasks do consume resources that can make the opening of menus a lot slower as well. It is always a good idea to take a look at what software is running in the background. The Task Manager in Windows 10 has improved a lot when compared with the task manager of previous Windows versions. But there are many freely available alternatives for that as well. None of them can hold a candle against 'Process Explorer' from Sysinternals. It keeps track of many, many things, which may appear to look chaotic in the eyes of someone who is not accustomed to this kind of tool. But when you get your head around it, it is a very good companion in finding out what is bugging your computer. Best of all, it's free.

Process Explorer shows you the load on the CPU, RAM, Network (part of I/O) and drive(s) (also part of the I/O).

High I/O loads seriously slow down any computer. Another test you could try is to kill all running tasks running in the front and background (except Process Explorer) and let the computer 'idle' while keeping an eye on resource usage in Process Explorer. If there is still a high I/O load, you are likely having a piece of hardware in your computer that has degraded. If it is disk I/O, you should consider buying a new drive, if it is network I/O it may be a degraded network module or your system may be infected with a rootkit.

   



mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: There is Sometimes a Long Delay to Open up the Quick Paste Menu
« Reply #2 on: February 18, 2021, 11:36 PM »
What you could try is changing this setting, and see if it helps:
Screenshot - 2_18_2021 , 11_35_31 PM.png

viking2

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 9
    • View Profile
    • Donate to Member
Re: There is Sometimes a Long Delay to Open up the Quick Paste Menu
« Reply #3 on: February 27, 2021, 08:31 PM »
I changed the settings but it didn't help much. The delay happens when I haven't opened the Quick Paste Menu for some time. If I open it, then subsequent opening are almost instant.

KodeZwerg

  • Honorary Member
  • Joined in 2018
  • **
  • Posts: 718
    • View Profile
    • Donate to Member
Re: There is Sometimes a Long Delay to Open up the Quick Paste Menu
« Reply #4 on: February 28, 2021, 07:07 AM »
That is because Windows has cached menu entries at that point.
Longer not using or starting app new will, like Shades said, query Windows for 'what should be drawn ....'
From developers side you cant do much against Windows itself.
(Maybe draw invisible menus via timer, not friendly at all)