The following wtl poll is now closed. Here are the final results: POLL QUESTION: What C++ compiler do you when building WTL-based projects? (You may specify ...
Hi All, Lets say 4 classes defined as follows: template <int T> class A { void Method() { switch(T) ... } }; template <int T> class B { A<T> m_A; }; template...
... Hi, ... [snip] ... A single copy. You only instantiate template class A once with the value 1 in the sample code, classes B,C,D have no bearing. Richard....
Hi Gordon, Plans for Whidbey are to provide full support, especially for Windows CE. I am currently working on the SmartDevice AppWizard. Cheers, Nenad ... ...
I have a ListBox control in dialog, and I have set "want key input" property to true. so, I can receive WM_VKEYTOITEM to remove a item. but how to process...
Hi. I'm using WTL7.0. I have a dialog window three edit controls, OK button and CANCEL button. I'd like to implement Alt-k for OK button, Alt-c for Cancel...
On Fri, 2 Jul 2004 08:35:11 +0100 (BST), balaji m.n.a ... The UI guidelines explicitly sate that the OK and Cancel buttons should not have a mnemonics - the...
Hey folks, I have a tree view control that I've subclassed from CTreeViewCtrlEx. This tree is designed to display a large dataset where fetching items is ...
Adding an extra call to Invalidate after SelectItemSetFirstVisible seemed to help my redraw. I think I have the other issue figured out. When I restore the...
I posted this into the ide newsgroup with no response for a couple fo weeks, so I'll try here.... my menu resources keep disappearing - acutally the number is...
I posted this into the ide newsgroup with no response for a couple fo weeks, so I'll try here.... my menu resources keep disappearing - acutally the number is...
I believe that it is a TreeView issue - I have an MFC version where I try and do a virtual tree as well. My tree also has variable height for some of the items...
Afaik the only windows that dissapear after the debugging session in ended are the dissasembly windows and the other run-time generated windows (watch etc etc...
Peter, I'm afraid you aren't the only one who's been having windows close on him when debugging.. It's happened to me as well a couple of times. I haven't...
Resource.h is included. It does stay with the resource ID for "a while" not sure how long or what triggers it to revert to the numeric value. Peter ... From:...
This is a Visual Studio 2002/2003 bug - and it doesn't only affect ATL/WTL - I have MFC projects that suffer from this VERY annoying problem. I am forever...
WTLers: I seek the simplest but most robust way to set the height of all list box items. I am not adding any elaborate art to each list box item: I only ...
... There are a couple of problems here. GetDC generally requires a matching call to ReleaseDC. Therefore you shouldn't use CDC here, as it calls DeleteDC in...
... In addition to what Jim wrote, here is typically what you see in WTL source code: //somewhere in the dialog class enum { m_cyTextMargin = 2 //or whatever...
... LOGFONT didn't fly. Thanks to Jim for getting me right with the Memory Fairy. Parenthetically, I don't expect to change the font or use variable-sized list...
HI All I am confused in starting a WTL project(actually to build up an User Interface) Problem is Stated below thanx's in Advance. Design a intuitive interface...