You can use the following code to add Context Sensitive Help button (“?” button in the Window title bar) to your Qt Windows, that is QWindow or QMainWindow, not QDialog which has “?” button by default.
Continue reading “How to Add Context Help Button to Qt Windows”How to Open CHM Files and Topics in C++/Qt (Using Windows API)
In Qt/C++ you can open Compiled HTML Help files (*.CHM files) quite easily with a simple Win32 API function named HtmlHelp. In this post I have shared a wrapper function that you can copy and paste in your Qt/C++ code and use.
Continue reading “How to Open CHM Files and Topics in C++/Qt (Using Windows API)”Slow right-click context menu fix
I was facing this problem for a long time and even Microsoft support guys didn’t know why it was happening after messing with my PC using remote assistant many times. The problem persisted even after I upgraded to Windows 10. Anyway here is the fix to the slow right-click menu in my case:
Remove the following from the registry:
HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxcui
Taken from this link