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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 14530 - 14559 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14530
MFC has it. But it seems absent under WTL. Is there any sample to realize a OLE document server using WTL?...
enjoy_yjh
Offline Send Email
Apr 2, 2007
5:05 am
14531
... Hi, The very old ATL sample, ActiveDoc, does it. ACTIVEDOC Sample: Implements an Active Document Server ...
Bjarke Viksøe
bviksoe
Offline Send Email
Apr 2, 2007
6:25 pm
14532
... That works. 3xs...
enjoy_yjh
Offline Send Email
Apr 4, 2007
4:38 am
14533
Hi all, I have a simple dialog with a combobox in it. In the dialog editor, I entered some candidate values for the combo in the "Data" entry of the dialog...
avewtl
Offline Send Email
Apr 4, 2007
6:00 am
14534
... For this to work, you need to call ExecuteDlgInit in your WM_INITDIALOG handler. -- Jim Barry, MVP (Windows SDK)...
Jim Barry
jim_barry.geo
Offline Send Email
Apr 4, 2007
11:15 am
14535
The default WTL program icon (IDR_MAINFRAME) is 32x32 16 colors. How do I go about adding a ico set that includes multiple sizes and color depths and set that...
Peter Carlson
strcarl813
Offline Send Email
Apr 4, 2007
10:29 pm
14536
Open the icon in the resource editor and go to Image-->New Image Type and you can select what color depth you want to add. ... [Non-text portions of this...
Levi Wilson
skankwilsonite
Offline Send Email
Apr 4, 2007
11:07 pm
14537
Thanks Peter ... -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean....
Peter Carlson
strcarl813
Offline Send Email
Apr 4, 2007
11:38 pm
14538
... WM_INITDIALOG handler. ... Thanks Jim, this solved my problem!...
avewtl
Offline Send Email
Apr 5, 2007
2:38 am
14539
Hi all, I have a dialog and want to monitor the Alt keypresses for it. When users presses Alt, I'd like to have one of my buttons change its label. The problem...
avewtl
Offline Send Email
Apr 5, 2007
2:45 am
14540
Besides, this a modal dialog....
avewtl
Offline Send Email
Apr 5, 2007
3:18 am
14541
Hello, I'd really appreciate if focus rectangle for hyperlinks will be optional in WTL. Currently I have to patch WTL after each version update to comment...
Constantin Bryzgalin
costyan
Offline Send Email
Apr 5, 2007
9:10 am
14542
... A modal dialog has its own private message loop, so your application's message loop never sees the message. It's probably easiest just to make the dialog...
Jim Barry
jim_barry.geo
Offline Send Email
Apr 5, 2007
12:53 pm
14543
with a listview in report mode, add gridlines and when you pageup/page down or lineup/linedown the gridlines get messy, some even are drawn over the data. To...
Peter Carlson
strcarl813
Offline Send Email
Apr 5, 2007
4:02 pm
14544
... KB813791 "BUG: Gridlines for list-view control are not drawn correctly using the LVS_EX_GRIDLINES style" -- With best wishes, Igor Tandetnik With...
Igor Tandetnik
itandetnik
Offline Send Email
Apr 5, 2007
5:05 pm
14545
Hello, Couple weeks ago I faced a problem with windows controls. I have a dialog with a custom background (I load a .png from resources and paint it in...
Constantin Bryzgalin
costyan
Offline Send Email
Apr 5, 2007
5:07 pm
14546
... This is a well-known bug, see http://support.microsoft.com/kb/813791. It's fixed in Vista but for some reason Microsoft refused to fix it in XP :-( The...
Jim Barry
jim_barry.geo
Offline Send Email
Apr 5, 2007
5:10 pm
14547
WTL library shows the codes below: // Constructor CSplitterImpl() : m_xySplitterPos(-1), m_nDefActivePane(SPLIT_PANE_NONE), m_cxySplitBar(0), m_cxyMin(0),...
yuzhiyao
Offline Send Email
Apr 5, 2007
8:48 pm
14548
You are almost there. Just as an idea: CHyperLink::on_WM_PAINT( ) { HDC hdc = this window client DC.... // ask our parent to draw itself our background: // hdc...
Andrew Fedoniouk
newsterrainf...
Offline Send Email
Apr 5, 2007
10:48 pm
14549
... (true), ... section ... control ... problem ... lock ... these ... load a ... code. ... LPARAM ... intend on ... this to ... this to ... this ... true> ......
yuzhiyao
Offline Send Email
Apr 6, 2007
7:41 am
14550
I think it's ATL::_pAtlModule which caused the problem. We can see that CStaticDataInitCriticalSectionLock use the ATL::_pAtlModule- ... class...
yuzhiyao
Offline Send Email
Apr 6, 2007
8:34 am
14551
Are you linking with the static, or the dynamic version of the C runtime? ... [Non-text portions of this message have been removed]...
Levi Wilson
skankwilsonite
Offline Send Email
Apr 6, 2007
12:26 pm
14552
... runtime? ... Here is my congiguration: VS2005-MainFrame Configuration Type:Application(.exe) Use of MFC: Use Standard Windows Libraries Use of ATL: Not...
yuzhiyao
Offline Send Email
Apr 6, 2007
1:39 pm
14553
No, in your linker options, is it /MT, /MTd, /MD ? ... [Non-text portions of this message have been removed]...
Levi Wilson
skankwilsonite
Offline Send Email
Apr 6, 2007
2:09 pm
14554
Hello, I don't quite understand. WM_PRINTCLIENT doesn't allow to specify clipping rectangle. So instead of repainting only part of background that lays under...
Constantin Bryzgalin
costyan
Offline Send Email
Apr 6, 2007
3:03 pm
14555
... Both are /MT, we should use which type?...
yuzhiyao
Offline Send Email
Apr 6, 2007
3:34 pm
14556
... Actually, I have tried all of them, the results are the same....
yuzhiyao
Offline Send Email
Apr 6, 2007
3:37 pm
14557
Trying using /MD. When you're loading a module, you're not sharing memory off of the same heap when it is allocated. I'm probably wrong, but it's just a...
Levi Wilson
skankwilsonite
Offline Send Email
Apr 6, 2007
3:45 pm
14558
I'm just guessing, but I think what is happening is that your splitter code is running in the DLL, and you don't have a Module (_Module) defined in the DLL and...
Michael Stephenson
domehead100
Offline Send Email
Apr 6, 2007
4:02 pm
14559
... memory ... it's ... both ... Thank u anyway. Now I just commented those trouble lines. It can work but still many other type problems. :) The Splitter...
yuzhiyao
Offline Send Email
Apr 6, 2007
4:02 pm
Messages 14530 - 14559 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