Search the web
Sign In
New User? Sign Up
wtl · WTL support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16022 - 16051 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16022
In CMessageLoop::IsIdleMessage(), why do WM_MOUSEMOVE, WM_NCMOUSEMOVE, WM_PAINT, and WM_SYSTIMER not cause idle processing ? -- Best regards, Richard B....
Richard B.
dj_deipotent
Offline Send Email
May 1, 2009
11:50 pm
16023
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...
numinel
Offline Send Email
May 4, 2009
12:43 pm
16024
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...
Richard B.
dj_deipotent
Offline Send Email
May 4, 2009
9:21 pm
16025
... Hi Richard, The problem is that the RichEdit Control itself is not theme aware as far as I understand it. You might find this interesting: ...
domehead100
Offline Send Email
May 4, 2009
10:02 pm
16026
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...
Richard B.
dj_deipotent
Offline Send Email
May 4, 2009
10:29 pm
16027
... 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? ...
domehead100
Offline Send Email
May 4, 2009
11:18 pm
16028
... 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...
Richard B.
dj_deipotent
Offline Send Email
May 4, 2009
11:40 pm
16029
... because there are too many of them and then your program would waste too much CPU just to check idle updates...
Nikos Bozinis
umeca74
Offline Send Email
May 5, 2009
9:10 am
16030
... The breakage is caused by Internet Explorer 8. See here for an explanation and workaround: ...
Jim Barry
jim_barry.geo
Offline Send Email
May 5, 2009
10:05 am
16031
... 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...
numinel
Offline Send Email
May 5, 2009
11:11 am
16032
... I'm not too sure what could be causing the problem with IE7 - maybe it would help to install SP1 for VS2005? -- Jim Barry, Microsoft MVP...
Jim Barry
jim_barry.geo
Offline Send Email
May 5, 2009
11:56 am
16033
... 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 :)...
numinel
Offline Send Email
May 5, 2009
2:45 pm
16034
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...
arasakumaran
Offline Send Email
May 6, 2009
4:08 pm
16035
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. ...
so_akatsuki
Offline Send Email
May 7, 2009
4:57 pm
16036
I see v8.1 is available. What's new?...
robert679078
Offline Send Email
May 8, 2009
8:51 am
16037
... 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...
cristianadam
Offline Send Email
May 8, 2009
1:45 pm
16038
http://sourceforge.net/project/shownotes.php?group_id=109071&release_id=680959...
zodiaq@...
zodiaq...
Offline Send Email
May 8, 2009
7:33 pm
16039
I'm trying to write a MessageBox class that uses CIndirectDialogImpl: class CMyMessageBox : public CIndirectDialogImpl<CMyMessageBox, CMemDlgTemplate,...
domehead100
Offline Send Email
May 15, 2009
11:17 am
16040
... After installing Service Pack 2 for Windows Vista the problem with the Wizard came back. Anyone have an idea what could cause it now?...
numinel
Offline Send Email
May 27, 2009
9:02 am
16041
hello : i use IOCP in serial communication, RS232.      BOOL bOK = ::GetQueuedCompletionStatus(m_hCompletion,     &dwTrans, (LPDWORD)&dwKey,...
carr 帅
shuaixh
Offline Send Email
May 30, 2009
10:19 am
16042
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....
hawkgao
Offline Send Email
May 31, 2009
9:59 am
16043
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...
Philip Chan
comphilip
Offline Send Email
Jun 1, 2009
1:06 am
16044
Can windowless Richedit controler receive WM_CHAR message? or a more general question, can windowless control receive all messages as their window enable time?...
hawkgao
Offline Send Email
Jun 1, 2009
2:03 am
16045
It can in theory, but since the control has no windows, the message it receives through IOleInPlaceObjectWindowless::OnWindowMessage. The container has a...
Philip Chan
comphilip
Offline Send Email
Jun 1, 2009
5:00 am
16046
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...
domehead100
Offline Send Email
Jun 2, 2009
5:25 am
16047
... No. The message map _is_ ProcessWindowMessage - check out what BEGIN_MSG_MAP macro actually expands to. ProcessWindowMessage is a virtual function, so a...
Igor Tandetnik
itandetnik
Offline Send Email
Jun 2, 2009
1:02 pm
16048
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...
Richard B.
dj_deipotent
Offline Send Email
Jun 2, 2009
6:22 pm
16049
... 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...
Jim Barry
jim_barry.geo
Offline Send Email
Jun 3, 2009
10:05 am
16050
Ah, I didn't realise that didn't originally have them. Thanks for the info! -- Best regards, Richard B....
Richard B.
dj_deipotent
Offline Send Email
Jun 3, 2009
10:15 am
16051
Hi all I've mentioned all I want in the subject line. Moji [Non-text portions of this message have been removed]...
Mojtaba Fathi
modjtabaf
Offline Send Email
Jun 3, 2009
5:03 pm
Messages 16022 - 16051 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help