Hi everyone, A couple of issues with menu underlining: 1. It used to work that if you press the Alt key the menu underlining would appear while Alt was...
... A good guideline is to always follow the operating system. Office changes its interface far too often and with too little need to bother keeping up with. I...
Yes it is a user setting, but I'm trying to get the proper messages to CCommandBarCtrl so that it respects the setting. Standard apps will show the underlines...
Well, I'm still seeing a black drop down list in the area not covered by the strings. I was able to get rid of it, but lose all reflected notifications. ...
... underlining would ... supposed to do ... is ... and ... You shouldn't have to do anything. The CCommandBarCtrl is supposed to act just like a standard...
... covered by the ... notifications. ... insight in ... message map ... fine. ... different ... why removing ... something I can ... control ... Hi Mark, It...
Roger! You da man! That did the trick. I've been pulling my hair out over this for way too long. Your explanation makes sense too. Now I can close this...
Hello. ... You can try my CFullScreenFrameWindow class: #ifndef __conr_FullScreenFrameWindow_h__ #define __conr_FullScreenFrameWindow_h__ #pragma once ...
Roger and/or others, Suppose you don't happen to also know why the text for checkboxes are displayed with a gray background rather than the theme background? ...
... are ... Assuming that the parent of the checkbox has REFLECT_NOTIFICATIONS() in its message map, it could be the same problem that you had with ...
I really like the resizable dialog's ability to occupy and use all the available space when growing. But when the dialog is shrunk beyond its minimum size, I...
Hi, I'm trying to learn WTL and would like to convert some C code to WTL. I would like to know wether operator overloading is allowed in WTL. Kind regards, ...
Hi all, I have an edit control and I can catch the various VK messages, but I'm trying to stop the beeping that occurs. In MFC I would just return without ...
... Post your code! I can't comment much without it. I remember doing something similar with the tab key. Are you setting the "bHandled" parameter to true? ...
... lParam, BOOL& ... Hi Mike, I believe its WM_CHAR that beeps. I don't remember why, but I don't think handling WM_KEYDOWN prevents a WM_CHAR message from...
... It should do, if the the edit control is in a dialog box and you return DLGC_WANTALLKEYS in response to WM_GETDLGCODE. But then, the same is true of...
Ok, I've totally lost what I was doing. I want my edit control to do some work on VK_RETURN but pass on other keys. I thought it would something like: LRESULT...
Hi Mike; Since you're in a dialog, you're probably using the dialog style message loop which includes a call to IsDialogMessage(). The TAB key (and perhaps the...
Hello WTLers, Are there any tricks to getting CDialogResize to work properly? I've been followng the tutorial on CodeProject by Michael Dunn, but I'm having a...
See if this helps: KB Article KB102589 "HOWTO: Use the ENTER Key from Edit Controls in a Dialog Box" -- With best wishes, Igor Tandetnik "For every complex...
... OK, now get rid of your WM_GETDLGCODE handler completely - a multiline edit automatically returns DLGC_WANTALLKEYS, and performs a bit of extra processing...