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 14061 - 14090 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14061
UI update functions. See this: http://www.codeproject.com/wtl/wtl4mfc2.asp#uiupdating ... etc. ... ...
enjoy_yjh
Offline Send Email
Dec 4, 2006
1:49 pm
14062
Has anyone else experienced this error with the latest PlatformSDK (Windows 2003 Server R2) and ATL: atlwin.h(1753) : error C2065: 'i' : undeclared identifier ...
dbrown0710
Offline Send Email
Dec 4, 2006
8:23 pm
14063
... This is no longer standard by the C++ standard, it's just that VC2005 compiler finally defaulted to the correct (standard) behavior. ... This is not a...
Marc Brooks
anotherexcita
Online Now Send Email
Dec 4, 2006
8:41 pm
14064
I get this debug assert when creating WTL/ATL controls that host a browser window or windows media player, using VS2005 (worked fine in VS2003). The problem...
dbrown0710
Offline Send Email
Dec 4, 2006
9:08 pm
14065
... ATL version in Platform SDK is based on ATL3 (shipped with VC6) and has not been updated since (and probably won't ever be). If you look at the comments at...
Igor Tandetnik
itandetnik
Offline Send Email
Dec 4, 2006
10:12 pm
14066
... The lastest Platform SDK is actually "Windows SDK for Vista": ISO Install:...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 5, 2006
10:32 am
14067
Hi Ingar, Easy and MDI? Hmm :-) Other than the usual UpdateUI stuff, you need to know that the menu is being changed when MDI client window receives...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Dec 5, 2006
11:27 am
14068
I have build a MDI project in MFC,then I have mixed WTL classes to the project,so I have changed all the graphical features in to WTL,I have some other classes...
Maryam
m_kasravi2002
Offline Send Email
Dec 6, 2006
6:12 am
14069
... Option #1 ... Use the WTL CStatic instead. ... Option #2 ... Use Attach to associate the real HWND window handle with a CWnd object. You may need to add...
Rick Parrish
ultra_wide_band
Offline Send Email
Dec 6, 2006
6:27 am
14070
Hi, How can I bring one window to front and activate it? I have tried * BringWindowToTop * SetForegroundWindow But none of these bring window on top, all they...
Manjeet Dahiya
metal_the_soul
Offline Send Email
Dec 8, 2006
10:53 pm
14071
... It does work for me :) iv ... [Non-text portions of this message have been removed]...
Ivars Veksins
iveksins
Offline Send Email
Dec 9, 2006
12:36 am
14072
Windows XP specifically tries to prevent windows from becoming the foreground window, because developers think that their applications are the most important...
Eric Brown
ericbr42
Offline Send Email
Dec 9, 2006
8:20 am
14073
IE7 uses a ReBar control at its top and adds some ToolBar and ComboBox, etc to it. I know how to add controls to a ReBar, but how reposition them like IE7? I s...
gchen
chengang31
Offline Send Email
Dec 9, 2006
6:11 pm
14074
All this was very helpful, thanks everybody. ... -- Manjeet Dahiya [Non-text portions of this message have been removed]...
Manjeet Dahiya
metal_the_soul
Offline Send Email
Dec 9, 2006
6:39 pm
14075
Adding to this. How can we have big icons in toolbar enclosed in a ReBar control? ... -- Manjeet Dahiya [Non-text portions of this message have been removed]...
Manjeet Dahiya
metal_the_soul
Offline Send Email
Dec 9, 2006
7:35 pm
14076
Hi, I've got a question regarding keyboard shortcut processing. My program frame window CMainFrame is derived from CFrameWindowImpl<CMainFrame> and...
He Shiming
billholtsh
Offline Send Email
Dec 11, 2006
4:45 am
14077
... Ctrl+V ... these ... how i deal with this: within LVN_BEGINEDIT i send a (custom) message to the main frame to suspend its accelerator processing, which...
Nikos Bozinis
umeca74
Offline Send Email
Dec 12, 2006
6:44 pm
14078
Give the following a try - should works for main frames that are hosting dialog type controls: BOOL CMainFrame::PreTranslateMessage(MSG* pMsg) { if...
robert_caldecott
robert_calde...
Offline Send Email
Dec 12, 2006
11:15 pm
14079
Hello everyone, I am just getting started learning WTL (working through the codeproject tutorial now), I have good bit of ATL under my belt building COM...
Gough, Christopher
newbbrewer
Offline Send Email
Dec 12, 2006
11:19 pm
14080
... window that has focus ... (LPARAM)pMsg) != 0) ... () so that ... Thank you both for the ideas. I'll try the disabling accelerators one. Regarding the test...
He Shiming
billholtsh
Offline Send Email
Dec 12, 2006
11:57 pm
14081
... window that has focus ... (LPARAM)pMsg) != 0) ... () so that ... Oops, please disregard my previous message. I mis-read your code, and I understand the...
He Shiming
billholtsh
Offline Send Email
Dec 13, 2006
12:01 am
14082
Chris Sells, Dharma Shukla, and Nenad Stefanovic have written a document *WTL Makes UI Programming a Joy* ** U can download it at...
hayate
haohaolee
Offline Send Email
Dec 13, 2006
4:33 am
14083
Is it possible to use CIdleHandler (and CUpdateUI) with a modal dialog? Basically my dialog has a list view control and some buttons. I want to enable/disable...
dbrown0710
Offline Send Email
Dec 13, 2006
7:44 am
14084
... CIdleHandler is just a base class that defines a single virtual function. Classes deriving from CIdleHandler can be added to the module's message loop map....
Jim Barry
jim_barry.geo
Offline Send Email
Dec 13, 2006
12:29 pm
14085
Those articles seem to have gone missing. Mike J. ... From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com]On Behalf Of hayate Sent: Tuesday, December 12,...
Mike Johnston
mikie9z9
Offline Send Email
Dec 13, 2006
1:43 pm
14086
"dbrown0710" <key88sf@...> wrote in message news:eloat2+qpig@eGroups.com ... No. These handlers are called from the main message pump, but the modal ...
Igor Tandetnik
itandetnik
Offline Send Email
Dec 13, 2006
1:45 pm
14087
You can find them on Chris Sells' tool page. You have to scroll down the page. Mike J. ... From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com]On Behalf Of...
Mike Johnston
mikie9z9
Offline Send Email
Dec 13, 2006
1:54 pm
14088
I got it here is the link for anyone else looking[1], heh should have known it would be on Sells Brothers, I have all kinds of stuff from there already. [1]...
Gough, Christopher
newbbrewer
Offline Send Email
Dec 13, 2006
4:48 pm
14089
... You can use the same approach explained here: http://www.codeproject.com/dialog/idledialog.asp Andrew Fedoniouk. http://terrainformatica.com/htmlayout -...
Andrew Fedoniouk
newsterrainf...
Offline Send Email
Dec 13, 2006
9:12 pm
14090
... I did something similar once. I had a parent dialog, with a tab control with three list views on the left, and a placeholder for a child dialog on the...
pablo_alch
Offline Send Email
Dec 14, 2006
5:54 am
Messages 14061 - 14090 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