hello all, i am beginner with wtl8 in Features and installation i did not find the setupxx.js for VC6 can i try setup80x.js without breaking my VC? Thanks, ...
Hi guys, What is your recommended system for detecting memory/resource leaks in WTL? I have heard about "Boundchecker". Is that very expensive? Or perhaps ...
... I think you mean BoundsChecker by Numega/Compuware (the same people who made SoftIce). And, yes, it is very expensive. And it doesn't work all that well....
I made a object of CToolTipCtrl class. I found a problem during I used it. When AutoPop time - it's can get GetDelayTime(TTDT_AUTOPOP) - was over or...
Hello, ... Leak detection is one of options of free Boehm-Demers-Weiser C++ Garbage Collector currently developed by Hewlett-Paccard. Let me citate its doc a...
... identifier ... identifier ... MFC ... Try #including commctrl.h before atlctrls.h. If that doesn't work, you may end up needing to #define these funcs...
Hi Ingar, ... WTL? ... We use Memory Validator (http://www.softwareverify.com/cpp/memory/index.html) for this. Having used BoundsChecker in the past I can...
Implementing stuff at work, I ran across an issue that crops up when you export a WTL-derived class from a DLL. Documentation on this seems to be rather...
Hi all, I have a application that switches from wizard mode to advanced mode or vise versa via the menu. There are a few problem: 1 - If I start in the wizard...
Sorry for late answer, I just solved writing the MSG chain in the right order, writing if(uMsg != WM_PAINT) { CHAIN_MSG_MAP(CScrollImpl<T>) } before ...
Hi all, I have a strange problem using a listview in PPC devices (2003 or Mobile 5). I just created a mobile application using the wizard, selecting a ...
Hi, A related question: How easy is it in WTL to be able to interface a camera with live picture display? I have seen on the TWAIN standard, but it seems very...
You should read about WIA (Windows Image Acquisition). You might need to use some COM or ActiveX, which I've never used from C++ or WTL, but there's plenty of...
Hello, I'm have a trivial problem that I nonetheless cannot solve easily -- how to make my dialog exit via the upper-right [x] button? The OK/Cancel buttons...
"wakashi0001" <wakashi0001@...> wrote in message news:fc620q+hjo6@eGroups.com ... Handle WM_CLOSE message, call EndDialog from there, too. -- With best...
... Thanks! I assume it is enough to just call EndDialog(0): BEGIN_MSG_MAP_EX(MyDialog) ... MSG_WM_CLOSE(OnClose) ... END_MSG_MAP() void MyDialog::OnClose() { ...
... The value you pass to EndDialog is the value that is ultimately returned by DoModal to the calling program. It's up to you which value you want to report...
Hi Michelangelo, We finally found the solution ourselves. What you suggest is way too complicated. Instead, just see the header file "vfw.h" in Windows SDK....
Hi Maciej, We finally found the solution ourselves. Just see the header file "vfw.h" in Windows SDK. This is the AVI interface. And there is a callback...
Hi all, We have a problem porting some Win32 API code to WTL with menus with bitmaps. I Win32 we use ModifyMenu(hMenu,IDM_ALIGN_LEFT,MF_BYCOMMAND | ...
... CCommandBarCtrl uses owner-draw bitmap items to do its magic. You can change the image for a particular command ID by calling ReplaceBitmap or ReplaceIcon....
Hi Jim, Thanks a lot. You are a star. :-) Ingar ... -- _________________________________________________________________________ Ingar Rune Steinsland,...