... CPropertySheet/CPropertyPage don't set PSH_HASHELP/PSH_HASHELP unless EnableHelp is called, so I assume the OP is asking about the context help button that...
Hello all, [Summary] I am hoping someone with more intimate knowledge of the Windows API and COM technologies can give me some insight into what they think the...
I have a CDisplayManager class that has two CBrowserDisplay class members. The CDisplayManager class is derived as follows: CFrameWindowImpl<CDisplayManager>,...
Angus, I couldn't agree with you more. I ignorantly posted a message on the very nature of this thread's concern. IMHO** I think WTL should remove ATL/COM...
... Hello, no COM is necessary for WTL, although given that it is based in ATL you can use COM when you need to. As far as I'm concerned, I've never used COM...
I would not worry about the disappearance of ATL/WTL too soon. It is used in many applications where tight code with few dependencies is required. These...
"Ken Wilson" <kwilson.dev@...> wrote in message news:f8ttvp+9a80@eGroups.com ... This means you mention a control ID in a sink map entry, but you don't ...
"ryanbischoff" <ryanbischoff@...> wrote in message news:f8tttn+tc96@eGroups.com ... A native application can be built to depend only on libraries that...
I do indeed have these three pieces in two places. Each instance of my CBrowserDisplay class is derived from CAxDialogImpl and hosts its own IWebBrowser2...
"Ken Wilson" <kwilson.dev@...> wrote in message news:f8ubog+n29j@eGroups.com ... You can't use AtlAdviseSinkMap. It assumes that all three pieces are in ...
It is not really a big issue. Just don't bother with the ATL stuff. WTL should live as long as there are developers who want to write native applications and...
VS2005 - I have my own CString class derived from ATL::CString. In any debugger window (watch, autos, locals) it shows simply as a {...} and then I can expand...
... COM is really a part of Windows OS (and its GUI) if not formally but de facto and I cannot see alternatives. As an example the whole set of technologies...
If I recall, it's autoexp.dat in the \Common7\Packages\Debugger folder? _____ From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] On Behalf Of Peter Carlson...
Thanks autoexp.dat was the trick Peter -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean....
I'm still having problesm getting SetWindowText() to work in my MDI app. It's crashing not matter what I've tried. No reponses here so I'm pretty much stuck in...
I've finally made some success after looking at the WTL Bounce example. The technique used there passes a pointer to the frame CUpdateUIBase object on to the...
... in ... in ... to ... Impl::DispEventAdvise ... I have managed to progress slightly further. My controller class derives from IDispEventSimpleImpl as...
... I very much agree. For one, it would make it possible to compile a WTL application with other than Visual Studio. Visual Studio is great, but with VS 8.0...
"Ken Wilson" <kwilson.dev@...> wrote in message news:f90lck+avt3@eGroups.com ... That's incorrect. Make it OnBeforeNavigate2Info = {CC_STDCALL, VT_EMPTY,...
... I recently read an article on someone who made it possible for their VS add-in to work under VS.NET Express. Microsoft did NOT like that and asked that...
sorry for my ambiguity i mean the button in the caption bar thank u Gabriel, Jim, it works, thank u. ... () ... unless EnableHelp is called, so I assume the OP...
... I think this is often misunderstood; WTL depends on ATL not only for COM support, but also for windowing support. CWindowImpl and CComModule, for example,...
... WS_OVERLAPPED doesn't actually do anything - its value is zero. If you see WS_OVERLAPPED listed in Spy++, it just means "not WS_POPUP or WS_CHILD". My...