0
votes
How do I intercept a paste event in an editbox?
Subclass the edit box and handle the WM_PASTE message.
…
5
votes
UTF-8 in Windows
Unfortunately, there is no way to make Unicode the current codepage in Windows. The CP_UTF7 and CP_UTF8 constants are pseudo-codepages, used only in …
2
votes
Quickest way to implement a C++ Win32 Splash Screen
Register a class for the splash window and create a window using these styles:
WS_POPUPWINDOW: will make sure your window has no caption/sysmenu
WS_ …
1
vote
How do I disable and then enable the Retry button in a MessageBox (C++)?
You cannot directly manipulate the MessageBox controls, but you can use a hack. Install a WH_CBT hook just before displaying the dialog and handle the HCBT_ACTIVATE event. …
4
votes
WS_VSCROLL, CreateWindow style works, SetWindowLong doesnt
Some control styles cannot be changed after window creation. The ES_AUTOHSCROLL style (which essentially controls word wrapping) is one of them; this is stated (somewhat indirectly) by the MSDN sec …
1
vote
How do you place sub controls inside a group box?
The problem is having the groupbox as the controls' parent. Groupboxes are not supposed to have any children and using them as parents will cause all kinds of errors (including painting, keyboard n …
3
votes
What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?
The problem is that your hook DLL is actually being loaded into several different address spaces. Any time Windows detects an event in some foreign process that must be processed by your hook, it l …
11
votes
What is the best way to test whether a file exists on Windows?
According to the venerable Raymond Chen, you should use GetFileAttributes if you're superstitious. …
2
votes
How to cancel the ‘system key down’ state in Windows
When you release the Alt key, the system generates a WM_SYSCOMMAND/SC_KEYMENU message. Futhermore, unless you press a key to open a specific popup menu, the lparam will be …
