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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 15047 - 15082 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15047
Hi all, I noticed the sample project "Alpha" in WTL. But how can I create the 32bpp images? (I need an additional alpha channel for the fuzzy edges of icons). ...
avewtl
Offline Send Email
Nov 1, 2007
11:07 am
15048
... Yes. Getting the final 32-bit RGBA bitmap can be tricky, though. One way to do it is to export the image as PNG, then open it with Microsoft Paint and save...
Jim Barry
jim_barry.geo
Offline Send Email
Nov 1, 2007
11:31 am
15049
I took a look at that but it seems your using CMDIFrameWindowImpl in your main window. Mine is inheriting from CDialogImpl. Is there a way to subclass the menu...
rdeviant
Offline Send Email
Nov 1, 2007
2:07 pm
15050
In order to get menu(s) to call the owner draw callbacks (MeasureItem, DrawItem, etc.), the menu(s) must have the owner draw style set. Are you setting that...
Michael Stephenson
domehead100
Offline Send Email
Nov 1, 2007
5:34 pm
15052
I looked at that MFC tutorial but it does not give me the idea of how to initialize such that I start receiving the owner drawn messages. My code is as...
rdeviant
Offline Send Email
Nov 1, 2007
7:18 pm
15053
Probably what is happening is that the WM_MEASUREITEM messages are going to the Dialog, since these notifications are sent to the parent/owner of the menu....
Michael Stephenson
domehead100
Offline Send Email
Nov 1, 2007
7:32 pm
15054
I'm poking around with the CTabViewImpl and the WTLBrowser sample. Let's say I want to customize the tab control's appearance or behavior. I'm having a...
Michael Stephenson
domehead100
Offline Send Email
Nov 1, 2007
7:37 pm
15055
Hey Michael, thanks for your input. REFLECT_NOTIFICATIONS didn't work, which I think may be because the menu isn't a child window of the dialog (could be wrong...
rdeviant
Offline Send Email
Nov 1, 2007
8:47 pm
15056
Here is another article that should point you to the right direction: http://www.codeproject.com/wtl/WTLOwnerDrawCtxtMenu.asp Igor. ... and the ... handled. ...
igorv007
Offline Send Email
Nov 1, 2007
10:33 pm
15057
Then take a look at another article: http://www.codeproject.com/wtl/WTLOwnerDrawCtxtMenu.asp Igor. ... From: rdeviant <rdeviant@...> To:...
Igor Vigdorchik
igorv007
Offline Send Email
Nov 1, 2007
10:41 pm
15058
Hi again, This is actually a nightmare. I have tried to install the latest "HotFix" from Microsoft, but my IntelliSense still does not work. The only thing I...
Ingar Steinsland
ingarrune
Offline Send Email
Nov 1, 2007
11:43 pm
15059
Try Visual Assistant from http://www.wholetomato.com/ for much improved IntelliSense support. Karl ... [Non-text portions of this message have been removed]...
Karl Edwall
edwallk
Offline Send Email
Nov 2, 2007
3:51 am
15060
My question would be how to switch Intellisense off when using VA! Does anyone know? David Green _____ From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com]...
David Green
drdavidgreen...
Offline Send Email
Nov 2, 2007
6:12 am
15061
I found IntelliSense to be so bad in VS 2005 with WTL/C++ projects that I switched back to VS 2003 for WTL work but told it to use the VS 2005 compiler/linker....
Michael Stephenson
domehead100
Offline Send Email
Nov 2, 2007
11:33 am
15062
I'm pretty sure that REFLECT_NOTIFICATIONS should work; but, your handlers in your menu class need to be handling OCM_MEASUREITEM, OCM_DRAWITEM, etc., the...
Michael Stephenson
domehead100
Offline Send Email
Nov 2, 2007
12:17 pm
15065
and what's the ATL version VS2008 use ?...
shuaixh
Offline Send Email
Nov 7, 2007
5:54 am
15066
<PRE> solve the problem, we must modify the file atlsplit.h, search UpdateSplitterLayout() function, modify it from: <code> // Implementation - internal...
xierenhui
Offline Send Email
Nov 7, 2007
8:24 am
15067
Well, that is not a fix and there is no problem like that to fix here. The original post states that the application is a MDI type with a splitter, and that...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 7, 2007
10:49 am
15068
Right now, App Wizard setup scripts don't work on VS2008. You can make them work if you change the registry settings to use version 9.0 instead of 8.0. That...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 7, 2007
10:51 am
15070
... a ... Wow! I've done it, and it seems to work quite well, and it was easy! What I've done: * Start with an "empty" MDI WTL App * Add the wtlsplit.h include...
massimilianoalberti
massimiliano...
Offline Send Email
Nov 7, 2007
3:16 pm
15073
I follow your suggestion step by step, but the ghost bar stay the wrong position, how to solv it? see the URL: ...
xierenhui
Offline Send Email
Nov 7, 2007
11:33 pm
15074
Yes, you'd derive from MDI frame window (CMDIFrameWindowImpl) and splitter (CSplitterImpl) classes. Cheers, Nenad _____ From: wtl@yahoogroups.com...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 8, 2007
11:25 am
15075
Seems that you covered everything that is needed. I'd only set m_hWndClient to NULL, since now splitter code is handling layout. That also means that you need...
Nenad Stefanovic
nenad_stefan...
Offline Send Email
Nov 8, 2007
11:28 am
15076
It's that there is an issue, it works as-is. I was curious however to see if there were alternative and maybe better ways to do this. Chris. ... ...
Trueman, Christopher
thearttrooper
Offline Send Email
Nov 8, 2007
11:33 am
15077
I'm pretty sure these are bugs. I think the first one is obvious, but not sure how to fix the 2nd one. Anyone have ideas? 1. CCustomTabView::UpdateLayout() has...
dbrown0710
Offline Send Email
Nov 8, 2007
6:52 pm
15078
Dave, Here are two simple things you could do for #2, depending on if you are happy with the appearance: 1) In CCustomTabView::CreateTabControl(), add a line...
domehead100@...
domehead100
Offline Send Email
Nov 9, 2007
3:41 am
15079
... [...] ... I have asked about these 2 dirty pixels before :) If you search the forum, you will find Nenad's answer. ... [...] ... I will try your workaround...
gchen
chengang31
Offline Send Email
Nov 9, 2007
4:43 am
15080
When you are using a splitter, a main problem is that you cannot click on a panel(left or right) to activate it. What you can do is to change the so-called...
enjoy_yjh
Offline Send Email
Nov 9, 2007
6:17 am
15081
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File : /atldlgx.h Uploaded...
wtl@yahoogroups.com
Send Email
Nov 9, 2007
8:47 am
15082
Full description and sample usage: "Unusual but useful dialog based classes designed for specialization" Featuring cell menu, in place editor, single control...
arnavpoch
Offline Send Email
Nov 9, 2007
9:33 am
Messages 15047 - 15082 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