Skip to search.
wtl · WTL support list

Group Information

? 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.

Messages

  Messages Help
Advanced
Messages 5644 - 5673 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5644 Jim Barry
jim_barry.geo Offline Send Email
May 1, 2003
10:43 pm
... Sorry for the late reply. I'd forgotten how to fix this, but now I've remembered. The trick is to add the WS_EX_DLGMODALFRAME extended style, perhaps...
5645 Arindam Mitra
bumba1979 Offline Send Email
May 2, 2003
3:24 am
Yeah, thx roger. I'll try using the code. It seems I'm having problems with SetDataItem(). I'll first try to fix that. ... From: rdheadrick2...
5646 McDonald, Andrew
bfhobbes Offline Send Email
May 2, 2003
3:53 pm
1. Any compiler/linker worth its salt will remove duplicate template code, better ones will also remove extra template code generated from templated classes...
5647 kmenningen Offline Send Email May 2, 2003
4:00 pm
Hi everyone, We have a multi-SDI app and everything seems to work perfectly until you shut one of the SDI instances down. Then the remaining SDI instances...
5648 kmenningen Offline Send Email May 2, 2003
10:06 pm
Hi everyone, ... until ... I'm starting to narrow it down. It has to do with the CCommandBar class and the way we use it. The WTL Multi-SDI example has it as a...
5649 Igor Tandetnik
itandetnik Offline Send Email
May 3, 2003
12:38 am
... code, better ones will also remove extra template ... arguments but which result in the same machine code. I believe VC ... article than detailed this...
5650 Phlip
phlipcpp Offline Send Email
May 3, 2003
12:52 am
... The as-if rule implies a C++ compiler must produce a program that behaves as-if it had followed the virtual machine rules in the C++ Standard. If I call...
5651 Igor Tandetnik
itandetnik Offline Send Email
May 3, 2003
1:22 am
... f<long> ... linker ... when we ... will ... My sample does not try to call the function and detect from inside the function which instantiation is being...
5652 Phlip
phlipcpp Offline Send Email
May 3, 2003
1:43 am
... My ability to confuse the issue has struct again. assert(pf1 != pf2) will not guarantee f<int>() doesn't secretly call f<long>() (or vice versa) when you...
5653 kmenningen Offline Send Email May 3, 2003
1:59 am
... I finally solved the problem. It turned out one of the programmers on the team was using a static message handler for the status bar class. All those...
5654 Igor Tandetnik
itandetnik Offline Send Email
May 3, 2003
2:01 am
... well-defined ... Ah, I see. I guess this is a valid optimization, does not seem to be anything wrong with it. Does any actual compiler/linker behave this...
5655 Phlip
phlipcpp Offline Send Email
May 3, 2003
2:11 am
... I have pushed us well outside the envelop of my C++ awareness. ;-) -- Phlip http://www.c2.com/cgi/wiki?TestFirstUserInterfaces...
5656 Igor Tandetnik
itandetnik Offline Send Email
May 3, 2003
2:20 am
... way, ... and ... do ... Well, maybe Andrew McDonald knows. I would really like to find out exactly which compilers are better than those worth their salt....
5657 Phlip
phlipcpp Offline Send Email
May 3, 2003
2:24 am
... I don't care. My sane subset (which now includes SDB) is much narrower than my envelop, and already tuned for such optimizations as matter to real ...
5658 Nikos Bozinis
umeca74 Offline Send Email
May 6, 2003
9:29 am
In my app I have a few frame classes managed by the same thread, and I would like to have a pointer to the active frame in the main instance class: class...
5659 Pascal Binggeli
pbinggeli Offline Send Email
May 6, 2003
12:20 pm
I think this has been discussed in the "Simulated dynamic binding" thread. You can do something like. class CMyFrame : public CWindow { public: // Put your...
5660 Nikos Bozinis
umeca74 Offline Send Email
May 6, 2003
3:06 pm
... WTLs simulated dynamic binding _is_ the problem :) ... unfortunately this won't work for me my common functionality requires access to CFrameWindowImpl so ...
5661 Igor Tandetnik
itandetnik Offline Send Email
May 6, 2003
3:23 pm
... Or, you can create an abstract class (interface) with all the common operations you think you might need, derive all your frame classes from it and...
5662 Chris Russell
cdr774 Offline Send Email
May 6, 2003
3:33 pm
I'm still thinking about how to do this elegantly with an intermediate base class (likely with a templated constructor but not templated class sig), some...
5663 Nikos Bozinis
umeca74 Offline Send Email
May 6, 2003
3:41 pm
... thanks Igor this answer confirms my suspicion that there's no simple "cheap trick" with castings etc to access CMainFrames polymorphically. i'll need to do...
5664 Scott Andrew
scottandrew Offline Send Email
May 6, 2003
3:58 pm
What i usuall do is create a small base class that has my template so say CBasePane : CWindowImpl<CBasePane> Then every pane has it's own sublcass. The main...
5665 Menningen, Kevin
kmenningen Offline Send Email
May 6, 2003
4:04 pm
... I don't know if this will help, but I faced a similar problem with some splitter windows that were either horizontal or vertical, and I wanted a generic...
5666 Nikos Bozinis
umeca74 Offline Send Email
May 6, 2003
5:57 pm
... thanks Scott unfortunately my problem is with multiple _frames_ not views the latter are "easily" dealt with as you mentioned, deriving specialized...
5667 Carlos Pizano
cpizano@... Send Email
May 6, 2003
7:18 pm
Do you want to pay the price for RTTI? if so, I believe there is a way to simulate the magic cast that you need. CPU. ... From: Nikos Bozinis...
5668 Nikos Bozinis
umeca74 Offline Send Email
May 6, 2003
7:33 pm
... i went one step further with splitters myself i copied the whole class in a local "atlsplit2.h" and I edited to taste, removing the templated argument for...
5669 jo_lindien_2000 Offline Send Email May 6, 2003
8:30 pm
Hi all :) First, I'm happy to join your group, I've learned a lot :). I wrote a little application with WTL template (based on a dialog). All work fine. But I...
5670 Chris Russell
cdr774 Offline Send Email
May 6, 2003
11:13 pm
Hi - Welcome. Personally I'm not aware that this particular control has been ported to WTL. However, it should be pretty straight forward. When I first started...
5671 Nikos Bozinis
umeca74 Offline Send Email
May 7, 2003
6:02 am
... way to ... I can't say that I would be thrilled to resort to RTTI :) but anyway, what is your plan?...
5672 Frankinet Noël
gistek2000 Offline Send Email
May 7, 2003
8:26 am
Hello, May I get a copy of your adapted splitter, I have the exact same problem (vertical or horizontal gui) for tablet pc, and I must use a compile time...
5673 Nikos Bozinis
umeca74 Offline Send Email
May 7, 2003
8:42 am
... Noël the conversion was really easy, I just moved t_bVertical from the template list to the class variables & added some initialization code. If you give...
Messages 5644 - 5673 of 16586   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