Tagged Questions
The wm-command tag has no wiki summary.
1
vote
3answers
382 views
What message causes a button to send a WM_COMMAND message
I know that a Button, when clicked, sends the WM_COMMAND message to it's parent, but what message does it receive that makes it send this message? I am overriding the default WndProc of a button and ...
0
votes
0answers
28 views
How can I make this Modeless dialog modal?
We currently have a modeless dialog. I was asked to make it modal. Here's the code:
CWnd* pWnd = ::AfxGetMainWnd();
if (myPath->CachedTool() && ...
0
votes
0answers
109 views
wm_command vs. wm_keydown in DialogProc (C++ Win32 API)
I have implemented a ComboBox (Win32 API) with auto-completion functionality in its edit control. If the user presses "backspace" or "delete" I want the auto completion to be disabled! The Code auf my ...
0
votes
1answer
280 views
Windows keyboard accelerators and child windows
I have created a Windows GUI program using C and the Windows API, and I want the program to utilise keyboard accelerators. I have set up some accelerators, which are working correctly, but when focus ...
0
votes
2answers
1k views
How to programmatically select popup menu item in Windows?
I have an app that I'm writing a little wizard for. It automated a small part of the app by moving the mouse to appropriate buttons, menus and clicking them so the user can watch.
So far it moves ...