Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

wtl · WTL support list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 16486 - 16515 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
16486 umeca74 Send Email Mar 10, 2011
11:20 am
the way CTheme is currently checking for themes present isn't 100% right. Even when uxtheme.dll exists, the user could have windows classic mode enabled, so...
16487 Dani
dmagn25 Send Email
Mar 11, 2011
2:58 pm
I'm trying to remove the menu from my WTL (/ATL) application. In MFC you can remove the window from CREATESTRUCT in PreCreateWindow, but there's no such method...
16488 domehead100 Send Email Mar 11, 2011
5:02 pm
How about, in CMainFrame::OnCreate... HMENU hMenu = GetMenu(); SetMenu(NULL); DestroyMenu(hMenu); And remove the m_CmdBar from CMainFrame, remove the code in...
16489 Dani
dmagn25 Send Email
Mar 13, 2011
9:23 pm
Thank you, it worked....
16490 chuck_berrys_bastard_...
chuck_berrys... Send Email
Mar 14, 2011
8:39 pm
Search "Custom Tab Controls, Tabbed Frame and Tabbed MDI " by Daniel Bowen in codeproject...
16491 yarp
yarp2002 Send Email
Mar 25, 2011
7:03 am
When I need to initialize something I do it in OnInitDialog. But OnInitDialog is processed before the dialog actually shows. So what if I want to do something...
16492 Igor Tandetnik
itandetnik Send Email
Mar 25, 2011
11:40 am
... Do it the first time you get WM_PAINT. -- Igor Tandetnik...
16493 codewizok51 Send Email Mar 25, 2011
12:19 pm
I've updated the ATL template published by MS way back in 2004 in KB-280512. The template IConnectionPointImplMT is updated to utilize CComGITPtr and compiles...
16494 yarp
yarp2002 Send Email
Mar 25, 2011
12:44 pm
WP_PAINT really ? I was for sure not expecting that answer (I was of course thinking about some special event), but you're right it is the right time to do...
16495 Ilker Aksen
octo_ian Send Email
Mar 26, 2011
10:42 pm
Post a message in OnInitDialog, it will be handled after OnShow -Ilker...
16496 yarp
yarp2002 Send Email
Mar 27, 2011
8:16 am
Oh thank you Ilker, I prefer that solution. It is like if there was actually a post show event....
16497 umeca74 Send Email Apr 10, 2011
6:21 am
Here's another take of the floating/docking windows framework http://zabkat.com/blog/10Apr11-WTL-docking.htm I finished the source code drafted by Bjarke...
16498 PABLO
pablo_alch Send Email
Apr 11, 2011
7:03 am
Thank you!...
16499 Philipp Kursawe
pfcpille Send Email
Apr 12, 2011
12:19 pm
I would like to handle LVN_DELETEITEM in my subclass: class DailyProgramListView : public ATL::CWindowImpl<;DailyProgramListView, WTL::CListViewCtrl, ...
16500 yarp
yarp2002 Send Email
Apr 12, 2011
12:59 pm
Thanks so much Nikos. I am a great fan of Dockings and of course Viksoe's stuff is THE WTL reference....
16501 tom_gee Send Email Apr 13, 2011
12:24 am
Hi, I have a question about the following thunk used in ATL Windowing: mov dword ptr [esp+0x4], pThis jmp WndProc with information from this link:...
16502 Igor Tandetnik
itandetnik Send Email
Apr 13, 2011
2:07 am
... This is not the case. The thunk is installed permanently as the window procedure. ... The premise. -- Igor Tandetnik...
16503 tom_gee Send Email Apr 13, 2011
3:46 am
Thanks for the prompt help. I read the source code again, it's clear to me now that the thunk itself , not CWindowImplBaseT<;>::WindowProc(), is set to be the...
16504 Philipp Kursawe
pfcpille Send Email
Apr 13, 2011
8:26 am
Whats this thunk thing for anyway? How does it work? Thanks, Phil [Non-text portions of this message have been removed]...
16505 tom_gee Send Email Apr 13, 2011
11:33 am
This thunk is ATL's way to hook your windows message handler, in the form of a non-static C++ member function, to all kinds of windows message(WM_*). This is...
16506 Hauptmann Peter
hauptmannp Send Email
Apr 13, 2011
2:56 pm
The thunk maps the window handle (HWND) to the ATL CWindow-derived object.  For each subclassed window, a thunk is generated on the fly, with the object...
16507 Angus Comber
anguscomber Send Email
Apr 13, 2011
3:45 pm
Here is a good article on thunking http://www.codeproject.com/KB/cpp/thunk32.aspx?msg=2168100 ... From: Philipp Kursawe <phil.kursawe@...> Sender:...
16508 Philipp Kursawe
pfcpille Send Email
Apr 15, 2011
10:45 am
Hello, I have this PreTranslateMessage: bool preTranslateMessage(MSG& msg) { if (msg.message == WM_KEYDOWN && !lockWindow) { if (keyBuffer.check(msg.wParam)) {...
16509 domehead100 Send Email Apr 15, 2011
11:46 pm
You'd have to use a windows hook (either a keyboard hook or a message hook) if the dialog is modal. If the dialog can be nonmodal (it could disable it's owner...
16510 Philipp Kursawe
pfcpille Send Email
Apr 16, 2011
6:28 am
Thanks for your answer! I cannot use the WTL idle processing. The code you see "locks" the Windows CE device when you press a certain key sequence....
16511 Dani
dmagn25 Send Email
Apr 27, 2011
2:58 pm
Hi, I'm trying to display some information in a list view, I'm trying to create tile view with description and a progress bar (similar to the way explorer...
16512 Timo Kunze
timosoft2001 Send Email
Apr 28, 2011
9:14 am
Hi, Windows Explorer probably uses the totally undocumented list view COM interfaces for this, especially IDrawPropertyControl. Geoff Chappell has some details...
16513 Dani
dmagn25 Send Email
Apr 29, 2011
8:51 am
Thank you very much, I was looking for this info. -Dan...
16514 jack lin
jacklin5168 Send Email
May 16, 2011
2:11 am
________________________________ From: Dani <dmagn25@...> To: wtl@yahoogroups.com Sent: Fri, April 29, 2011 4:51:37 PM Subject: [wtl] Re: List view -...
16515 avewtl Send Email Jun 1, 2011
8:17 am
I have a transparent window (WS_EX_TRANSPARENT) floating topmost. Whenever there is a mouse move (anywhere on the screen) or keyboard stroke, it needs to...
Messages 16486 - 16515 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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