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 to share photos of your group with the world? 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 15164 - 15194 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15164
I am using the method outlined in alpha for loading 24 bit images into the toolbar, works fine. I want to do the same thing for some small icons I use in a...
Peter Carlson
strcarl813
Offline Send Email
Dec 3, 2007
1:02 am
15165
I have a class that derives from CFrameWindowImpl and I want to remove the title bar from the window. I've tried using the WS_DLGFRAME style to remove the...
lakepeir
Offline Send Email
Dec 6, 2007
1:11 pm
15166
Can it be a child window? WS_CHILD, they don't have title bars ... From: "lakepeir" <lakepeir@...> Sent: Thursday, December 06, 2007 5:38 AM To:...
Mike
mwfrith
Online Now Send Email
Dec 6, 2007
5:57 pm
15167
I have a WTL COM Server, the _Module is a CServerAppModule. When it is invoked as a COM object, I need to disable the delayed shutdown. Back in ATL 7.1 I was...
Sam Carleton
samcarleton
Offline Send Email
Dec 6, 2007
7:13 pm
15168
Hi, I have come into a strange situation with a pocket PC app. The device is an HP iPAQ running Pocket PC 2003. Perhaps the question is slightly off topic, ...
Ingar Steinsland
ingarrune
Offline Send Email
Dec 7, 2007
12:19 am
15170
see the comment of the code below. why doesn't it work right? and can anybody shows me an example about CToolTipCtl? void Init(HWND hWnd, LPCTSTR lpstrName) { ...
jimmyfan2007
Offline Send Email
Dec 7, 2007
5:46 am
15171
... Removing WS_DLGFRAME then calling SetWindowPos with SWP_FRAMECHANGED normally does the trick. -- Jim Barry, MVP (Windows SDK)...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 7, 2007
12:05 pm
15172
... I'm facing the same problem. be happy if u could share your findings with me ;-)...
alfred.bester
Offline Send Email
Dec 12, 2007
3:24 am
15173
Thanks. I have tried this and the title bar w/caption stills appears. ... normally does the trick....
lakepeir
Offline Send Email
Dec 14, 2007
10:48 pm
15174
How about posting a code snippet? Jim's suggestion worked perfectly for me when I tried it out on a frame window. _____ From: wtl@yahoogroups.com...
Michael Stephenson
domehead100
Offline Send Email
Dec 15, 2007
2:38 am
15175
By the way, here is all I did at the top of a CMainFrame's OnCreate handler: ModifyStyle(WS_DLGFRAME, 0, SWP_FRAMECHANGED); and that removed the caption bar...
Michael Stephenson
domehead100
Offline Send Email
Dec 15, 2007
7:14 am
15176
I have created a WTL tab-dialog-based application with a CTabView and each tab page is a dialog so that could use the dialog editor. I'd like to create the...
g0mfo
Offline Send Email
Dec 17, 2007
1:05 pm
15177
I declare the window in my header file: DECLARE_FRAME_WND_CLASS_EX( _T("MyNewWindow"), 0, WS_CHILD, COLOR_WINDOW ) BEGIN_MSG_MAP( MyWindow ) MESSAGE_HANDLER(...
lakepeir
Offline Send Email
Dec 17, 2007
3:36 pm
15178
... As a note, it might be easiest to create each page dialog but keep it hidden and then calculate the required rect that way. I think that's how the ...
Michael Stephenson
domehead100
Offline Send Email
Dec 17, 2007
4:37 pm
15179
... I'm puzzled as to why you're attempting to create a frame window with the WS_CHILD style. Perhaps you can explain exactly what you're trying to do here? ...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 17, 2007
5:25 pm
15180
how can i let a dynamic created button to use the font of the parent dialog's?...
duyuor
Offline Send Email
Dec 17, 2007
6:27 pm
15181
Hi, I guess something like: HFONT hFont=(HFONT) SendMessage(hDlg,WM_GETFONT,0,0); if (hFont) { SendDlgItemMessage(hDlg,<ID_BUTTON>,WM_SETFONT,(WPARAM)...
Ingar Steinsland
ingarrune
Offline Send Email
Dec 17, 2007
7:37 pm
15182
Thanks, Michael; I had read this article: http://blogs.msdn.com/oldnewthing/archive/2004/02/17/74811.aspx which suggested that I really want to use MapDlgRect....
Dick Dievendorff
g0mfo
Offline Send Email
Dec 17, 2007
8:08 pm
15183
the code looks so beautiful. it just what i need,thank u :)...
duyuor
Offline Send Email
Dec 17, 2007
8:57 pm
15184
Hi Dick, I'm a little unclear on the window heirarchy, but it sounds like you have a MainFrame -> Tab View -> Various dialogs for the tabs. Of course, if...
Michael Stephenson
domehead100
Offline Send Email
Dec 17, 2007
9:34 pm
15185
... Or, in WTL, CButton m_button; ... m_button.Create(...); m_button.SetFont(GetFont()); ... -- Jim Barry, MVP (Windows SDK)...
Jim Barry
jim_barry.geo
Offline Send Email
Dec 18, 2007
8:34 am
15186
more simple,very beautiful,thank u,Jim :)...
duyuor
Offline Send Email
Dec 18, 2007
8:58 am
15187
Hi WTL developers, Have you seen this problem before? When running code inside OnWizardFinish() or OnOK(), user can't switch to Windows Explorer. Usually this...
jianpan
Offline Send Email
Dec 18, 2007
10:32 pm
15188
Hi all, My article Unusual but Useful Dialog-based Classes Designed for Specialization is selected for CodeProject's December competition, but has not been...
Alain Rist
arnavpoch
Offline Send Email
Dec 22, 2007
12:42 pm
15189
... Specialization is selected for CodeProject's December competition, but has not been much voted for now. ... ...
pablo_alch
Offline Send Email
Dec 23, 2007
4:35 pm
15190
Thanks Pablo, It had only 4 votes when I posted yesterday, so thanks to the WTL community. Don't stop, vote ends next Sunday. Thanks again, AR ... From:...
Alain Rist
arnavpoch
Offline Send Email
Dec 23, 2007
5:04 pm
15191
... +1 Cool, now it's got 54 votes :-) Alain, thanks for this great article! Cheers -- Mateusz Loskot http://mateusz.loskot.net...
Mateusz Loskot
mateuszloskot
Offline Send Email
Dec 24, 2007
1:54 am
15192
Just like Qt's QString::reserve(). Thanks....
avewtl
Offline Send Email
Dec 28, 2007
4:33 pm
15193
Hiya, ... I've not used QT, but by the sound of it CString::GetBuffer() could be the one you are looking for. Cheers, Anna x http://www.riverblade.co.uk MSN...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Dec 28, 2007
5:41 pm
15194
Or perhaps CString::GetBufferSetLength() _____ From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] On Behalf Of Anna-Jayne Metcalfe Sent: Friday, December...
Michael Stephenson
domehead100
Offline Send Email
Dec 28, 2007
11:05 pm
Messages 15164 - 15194 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