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...
Show off your group to the world. Share a photo of your group with us.

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 11848 - 11880 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11848
Hi there, Are there any tricks to ATL/WTL that can allow me to have 'attached' edit controls send "VK" (e.g. VK_UP, VK_DOWN) keystroke notifications to their...
A H
ajhuddy2000
Offline Send Email
Jun 3, 2005
4:05 pm
11849
... If the dialog is not modal, you could examine messages coming to the dialog's PreTranslateMessage method before passing them to IsDialogMessage. -Roger...
Roger Headrick
lilsroro
Offline Send Email
Jun 3, 2005
6:34 pm
11850
The dialog is a modeless 'control' of a modal dialog <g>. Sounds like I'm S.O.L....
A H
ajhuddy2000
Offline Send Email
Jun 3, 2005
8:23 pm
11851
... like ... You can use the SetWindowsHookEx function to hook into keyboard events while the dialog is open. There should be some examples on the web. Or, if...
Roger Headrick
lilsroro
Offline Send Email
Jun 3, 2005
8:53 pm
11852
Hi I have an application which periodically refreshes based on a timer event. However if a context menu is displayed (using Trackpopupmenu), the window does...
wtl8734
Offline Send Email
Jun 5, 2005
8:14 pm
11853
Sirs, I have a program that have to use the CImage. I´m trying a series of include combinations, can someone help me? First I include the atlimage.h ...
Camilo Telles
camilotelles
Offline Send Email
Jun 6, 2005
1:47 am
11854
#include <atlbase.h> #if (_ATL_VER >= 0x0700) #include <atlstr.h> #include <atltypes.h> #define _WTL_NO_CSTRING #define _WTL_NO_WTYPES #define...
Baryon Lee
baryonlee
Offline Send Email
Jun 6, 2005
2:09 am
11855
TrackPopupMenu won't return until the menu is closed (you clicked an entry or somewhere else). So, usually, if you TrackPopupMenu when processing a message,...
He Shiming
billholtsh
Offline Send Email
Jun 6, 2005
2:31 am
11856
Baryon, Thanks. It worked. Where I can find more information about this defines? Only in the source? Camilo ... [Non-text portions of this message have been...
Camilo Telles
camilotelles
Offline Send Email
Jun 6, 2005
5:43 am
11857
I have a problem with a custom control I downloaded off the Web: it is drawn with the old-style 3D border, instead of the simple outline of the new WinXP...
R. J. Dunnill
rjdunnill
Offline Send Email
Jun 6, 2005
7:01 am
11859
Hello! I want to display dialog in Group Box. I create some dialog with DS_SETFONT | DS_FIXEDSYS | WS_CHILD styles. In parent dialog i write this code: class...
Dmitry Beshenov
BeshenowD@...
Send Email
Jun 6, 2005
11:00 am
11860
... bHandled) ... The child dialog needs the WS_VISIBLE window style. -Roger...
Roger Headrick
lilsroro
Offline Send Email
Jun 6, 2005
11:58 am
11861
Hello, Roger! Âû ïèñàëè 6 èþíÿ 2005 ã., 15:57:56: RH> The child dialog needs the WS_VISIBLE window style. Oh, thanks! I have forgotten about this....
Dmitry Beshenov
BeshenowD@...
Send Email
Jun 6, 2005
2:42 pm
11862
Thanks for the quick reply--are there any examples of how to set m_lpstrThemeClassList? I have no idea as to what that should be. Regards, RD...
R. J. Dunnill
rjdunnill
Offline Send Email
Jun 6, 2005
5:50 pm
11864
Recently, there has been repeated subscribe/unsubscribe activity on the part of a few individuals. The timing suggests that scripts are being used. The most...
johndiiix
Online Now Send Email
Jun 7, 2005
4:34 am
11866
Hello, He, Monday, June 6, 2005, You wrote: HS> TrackPopupMenu won't return until the menu is closed (you clicked an entry HS> or somewhere else). So, usually,...
Pavel Amialiushka
pavel_amiali...
Offline Send Email
Jun 7, 2005
8:47 am
11867
... The only difference TPM_RETURNCMD makes is that it causes TrackPopupMenu to return the ID of the selected menu item instead of posting a WM_COMMAND message...
Jim Barry
jim_barry.geo
Offline Send Email
Jun 7, 2005
10:08 am
11868
If you can post, you are not banned. Or do you have another account which is banned? The factor that I am considering is not email activity, but rather...
johndiiix
Online Now Send Email
Jun 7, 2005
11:13 am
11869
... Hi, Your control should be derived from CThemeImpl and you should add such code: LRESULT CYourControl::OnCreate(/*...*/) { ... OpenThemeData(L"ListView"); ...
vborovikov
Offline Send Email
Jun 7, 2005
3:09 pm
11870
Thanks--it worked! Regards, RD...
R. J. Dunnill
rjdunnill
Offline Send Email
Jun 7, 2005
5:12 pm
11871
Hi everyone, I have a pretty large MDI application with a little cosmetic bug. The first time I create an MDI child, the Window menu doesn't have an entry for...
Martin Filteau
martin_filteau
Offline Send Email
Jun 8, 2005
12:16 am
11872
... The first time I create an MDI child, the Window menu doesn't have an entry for it. I can create more childs and the Window menu isn't updated. If I...
Roger Headrick
lilsroro
Offline Send Email
Jun 8, 2005
1:34 am
11873
Hi, I'm sorry for being off-topic. But a lot of people on this group have been specialists in COM, so I think I can get a good answer here. Generally, if we...
He Shiming
billholtsh
Offline Send Email
Jun 8, 2005
4:09 am
11874
... For what it's worth: I found myself in a similar situation, not long ago. Exporting C++ objects (particularly, STL collections) means that you lose binary ...
Pablo
pablo_alch
Offline Send Email
Jun 8, 2005
5:39 am
11875
"He Shiming" <heshiming@...> wrote in message news:001301c56bdf$d37ab300$0100a8c0@nova... ... Ok. SimpleCOM in four easy steps: Let's create file named...
Andrew Fedoniouk
newsterrainf...
Offline Send Email
Jun 8, 2005
5:44 am
11876
Thank you both for the suggestions. Passing STL containers across EXE and DLL boundaries wasn't really a problem for me. I found that it's possible if both the...
He Shiming
billholtsh
Offline Send Email
Jun 8, 2005
8:16 am
11877
"He Shiming" <heshiming@...> wrote in message news:002801c56c02$6715e630$0100a8c0@nova ... But didn't you want binary compatibility? The way you...
Igor Tandetnik
itandetnik
Offline Send Email
Jun 8, 2005
11:40 am
11878
Thanks a lot Roger ! By pointing me at the frame window source code, I fixed another issue I had. I've also added a ::SendMessage(hWndMDIClient,...
Martin Filteau
martin_filteau
Offline Send Email
Jun 8, 2005
1:17 pm
11879
Hello everyone, How to install WTL on Visual C++ 2005 express? please help me....
funxue
Offline Send Email
Jun 8, 2005
1:23 pm
11880
... Does the express version include ATL? If so, it should be straightforward: just a double-click on the relevant javascript. Otherwise, I'm afraid you won't...
Pablo
pablo_alch
Offline Send Email
Jun 8, 2005
2:19 pm
Messages 11848 - 11880 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