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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 13402 - 13431 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13402
Hi, does anybody know why RB_SETBKCOLOR doesn't work (old common control early then 6 works fine). To look it create simple WTL application using Wizard and...
Serhiy Serbin
srs@...
Send Email
Mar 1, 2006
9:35 am
13403
... chess ... Legal or illegal is not a problem. I think c++ standard is not important so much. Why do we have to make a standard or a manual to limit our...
David
david.dai78
Offline Send Email
Mar 2, 2006
8:04 pm
13404
there is a edit in my dialog, i don't want enter key in the edit will cause the dialog closed...
succeeded918
Offline Send Email
Mar 3, 2006
11:12 am
13405
Probably you should specify ES_WANTRETURN style for the edit control. with best regards Serge A. Levin ________________________________ From:...
Levin, Serge
cormagh_oreilly
Offline Send Email
Mar 3, 2006
11:17 am
13406
There is a ReBar with a number toolbars: CreateSimpleReBar(ATL_SIMPLE_REBAR_NOBORDER_STYLE); m_hWndDevToolBar = CreateSimpleToolBarCtrl(m_hWnd,...
Sergey Voloshchuk
sww_13
Offline Send Email
Mar 3, 2006
3:09 pm
13407
I was curious if anyone knew if the source code existed for the GMail Shell Extension application for the GMAILFS that's referenced from ...
skankwilsonite
Offline Send Email
Mar 3, 2006
3:10 pm
13408
... can ... That is slightly off-topic I think. But being the author of the said tool, I can tell you that the source code is not available yet. It was based...
Bjarke Viksøe
bviksoe
Offline Send Email
Mar 3, 2006
4:43 pm
13409
I don't know if Erik Thompson, the original author for those nifty radbytes ATL object wizards, reads this forum, but I wonder if anyone has tried to port them...
Peter
petery
Online Now Send Email
Mar 3, 2006
5:47 pm
13410
Can anyone offer any insight on why in Windows XP CListViewCtrl::CreateDragImage creates an image with the ListView icon, but no text? I have an explorer type...
skankwilsonite
Offline Send Email
Mar 3, 2006
6:26 pm
13411
Thanks for the reply ... Even holding the mouse down, the combo still closes before i let go of the button ... Good idea. Ill try that. ... Since I am...
Mike Margerum
margerum
Offline Send Email
Mar 3, 2006
6:34 pm
13412
... This didnt work. One thing I did notice is that after my combo list shows then hides, the listView row select draws. This listview has the ...
Mike Margerum
margerum
Offline Send Email
Mar 3, 2006
6:41 pm
13413
... You can subclass during your window's initialization, right after list view itself is created, and just keep it subclassed at all times. ... Pass it to...
Igor Tandetnik
itandetnik
Offline Send Email
Mar 3, 2006
6:53 pm
13414
... I did use the CContainedWindow idea and I do receive the WM_LBUTTONDOWN message for my combo but I am not receiving CBN_SELCHANGE message. If I try to...
Mike Margerum
margerum
Offline Send Email
Mar 3, 2006
7:00 pm
13415
... and ... the ... The combobox list is sensitive to focus changes, so the list could be stealing focus back during the click-event sequence. Try putting the...
Bjarke Viksøe
bviksoe
Offline Send Email
Mar 3, 2006
7:00 pm
13416
... When you capture WM_LBUTTONDOWN on the list view and show the combobox, don't let the message get through to the list view. It looks like currently you do...
Igor Tandetnik
itandetnik
Offline Send Email
Mar 3, 2006
7:01 pm
13417
... You are subclassing the wrong window. WM_LBUTTONDOWN comes to the combobox itself. CBN_SELCHANGE and other notifications come to the combobox's _parent_...
Igor Tandetnik
itandetnik
Offline Send Email
Mar 3, 2006
7:15 pm
13418
... Got it. ... Cripes I was using message_handler. im using COMMAND_HANDLER now. I now understand the difference. thanks so much for the help on this....
Mike Margerum
margerum
Offline Send Email
Mar 3, 2006
7:37 pm
13419
... DOH. I was setting bHandled to true but then at the end of the switch, I was setting it back to false. Its working now. Thanks so much for the help guys....
Mike Margerum
margerum
Offline Send Email
Mar 3, 2006
7:41 pm
13420
... I am a fan of WTL and using WTL 7.5 with VC2005/ATL8 is (as far as I am aware, but I may be wrong) fully C++98 compliant. The C++ standard does not limit...
Reece Dunn
msclrhd
Offline Send Email
Mar 4, 2006
1:17 am
13421
Hi, ... I had the same problem some time ago. ...
timosoft2001
Offline Send Email
Mar 4, 2006
10:15 pm
13422
thanks Serge,but it doesn't work. i also tried subclass the dialog procedure but i don't know how to throw those message that idon't care back to the default...
succeeded918
Offline Send Email
Mar 6, 2006
1:59 am
13423
Try the following code in the dialog's PreTranslateMessage(MSG* pMsg) function: // If an edit control has a focus and an 'Enter' key is pressed then // edit...
igorv007
Offline Send Email
Mar 6, 2006
3:20 am
13424
thanks, but it only works in main dialog window, my dialog window unfortunately isn't the main dialog ... pMsg) ... to ... proc. ... Behalf Of ... edit...
succeeded918
Offline Send Email
Mar 6, 2006
3:43 am
13425
Can't you just eat the message in OnChar of the edit control instead of passing it through? if (VK_RETURN == wParam) return 0; And you've specified...
Mike Frith
mwfrith
Online Now Send Email
Mar 6, 2006
4:20 am
13426
it doesn't work cause the keydown message is captured by the dialog first, special key like return key will be converted to IDOK in default. ... instead of ......
succeeded918
Offline Send Email
Mar 6, 2006
8:57 am
13427
Have a look at this article, http://msdn.microsoft.com/msdnmag/issues/0700/c/ and see if that might help you. It's for MFC but never the less. Regards, Karl...
Karl Edwall
edwallk
Offline Send Email
Mar 6, 2006
11:00 am
13428
Hi, I've added a tooltip control to my dialog, and attached it to several controls. I'm calling RelayEvent when needed. My only problem is the timing. I want...
Gilad Novik
gilad_no
Offline Send Email
Mar 6, 2006
3:43 pm
13429
I managed through this by adding a fake command handler to IDOK which does nothing except return 0; The default implementation for IDOK seems to send an...
Michelangelo Partipilo
mike2001ve
Offline Send Email
Mar 6, 2006
4:55 pm
13430
Enter is the mnemonic for the IDOK button. What's your IDOK button doing? Why do you want to "break" its functionality? ...
Philip Taron
skalagrim
Offline Send Email
Mar 6, 2006
6:24 pm
13431
I am trying to prevent resizing of a window. Initially the (child) window is docked to the parent window. After undocking (by setting the windows style) the...
ptmoser
Online Now Send Email
Mar 7, 2006
3:24 am
Messages 13402 - 13431 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