In CMessageLoop::IsIdleMessage(), why do WM_MOUSEMOVE, WM_NCMOUSEMOVE, WM_PAINT, and WM_SYSTIMER not cause idle processing ? -- Best regards, Richard B....
All of a sudden the App Wizard for CE stopped working on my developer machine (running Windows Vista will all updates from Windows Update site + Visual Studio...
I've been looking at Mike Dunn's CodeProject WTL Splitter Windows article (Part VII), and have been trying to replicate the look of the last window on the...
Hi Mike, ... Thanks for the info. I wasn't aware RichEdit is not theme aware. However, that is not the problem, as even if I create two views which are just...
... Um, doesn't look like your CTesterView has theme support either, just being based on a generic CWindow. What if you derive it from some built-in control? ...
... Thanks Mike. After using two listviews I got the desired effect. For some reason, I was thinking every window would be themed automatically. Now I know...
... Thanks for your reply. The workaround fixed my developer machine (Vista + IE8) however, my test machine is running IE7 not IE8 and the workaround do not...
... Doh...I forgot that I had not yet installed SP1 on the test machine. After installing SP1 the Wizard worked. Thanks for the help with the IE8 fix though :)...
I have an application FrameWindow with a view, where I need a vertical toolbar. Can anyone point me in the right direction. I see a question posted last year...
sorry, i am not good at English. I installed Windows Vista + Visual Studio 2008 Pro SP1 + Windows Mobile 6 Pro SDK + IE8. (The workaround fixed IE8. ...
... You can click on the "clipboard" icon in SF downloads page http://sourceforge.net/project/shownotes.php?release_id=680959&group_id=109071 There you can...
I'm trying to write a MessageBox class that uses CIndirectDialogImpl: class CMyMessageBox : public CIndirectDialogImpl<CMyMessageBox, CMemDlgTemplate,...
Hi, guys, I known some about changing skin of application. But, it seems for MFC. I used Spy++ to probe MSN. I found there only one window on MSN GUI....
As I know, window is not necessary for a control as there is a technology called Windowless Control. If MSN GUI is working in this way. Then the main window is...
Can windowless Richedit controler receive WM_CHAR message? or a more general question, can windowless control receive all messages as their window enable time?...
It can in theory, but since the control has no windows, the message it receives through IOleInPlaceObjectWindowless::OnWindowMessage. The container has a...
Hi Folks, So, I've writtten this window finder thingie, like the window finder in Spy++ but hopefully a lot better. It's based on CStatic and displays a bitmap...
... No. The message map _is_ ProcessWindowMessage - check out what BEGIN_MSG_MAP macro actually expands to. ProcessWindowMessage is a virtual function, so a...
I've also just run into the same problem with using WTL CString, and solved the problem by following Jim's advice. Given the problems that can occur with using...
... ATL didn't originally have CString (it was MFC only) so WTL defined its own. When the MFC/ATL shared classes were introduced (in VC2002 I think) then WTL's...