Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 14837 - 14866 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14837 Jim Barry
jim_barry.geo Offline Send Email
Aug 1, 2007
11:48 am
... You need to remove the WS_EX_CONTEXTHELP extended style. Derive from CPropertySheetImpl and do it in your OnSheetInitialized handler: class...
14838 Gabriel Kniznik
gabrielkk2001 Offline Send Email
Aug 1, 2007
1:17 pm
ps.m_psh.dwFlags &= ~PSH_HASHELP; page.m_psp.dwFlags &= ~PSP_HASHELP; // before DoModal() or Create() Gabriel Kniznik...
14839 Jim Barry
jim_barry.geo Offline Send Email
Aug 1, 2007
1:40 pm
... 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...
14840 ryanbischoff Offline Send Email Aug 3, 2007
12:47 am
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...
14841 Ken Wilson
kennethjames... Offline Send Email
Aug 3, 2007
12:48 am
I have a CDisplayManager class that has two CBrowserDisplay class members. The CDisplayManager class is derived as follows: CFrameWindowImpl<CDisplayManager>,...
14842 ryanbischoff Offline Send Email Aug 3, 2007
12:53 am
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...
14843 Fernando Arturo GĂ...
kith_kahnan Offline Send Email
Aug 3, 2007
1:12 am
... 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...
14844 Ken Wilson
kennethjames... Offline Send Email
Aug 3, 2007
1:15 am
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...
14845 Igor Tandetnik
itandetnik Offline Send Email
Aug 3, 2007
1:23 am
"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 ...
14846 Igor Tandetnik
itandetnik Offline Send Email
Aug 3, 2007
1:53 am
"ryanbischoff" <ryanbischoff@...> wrote in message news:f8tttn+tc96@eGroups.com ... A native application can be built to depend only on libraries that...
14847 Ken Wilson
kennethjames... Offline Send Email
Aug 3, 2007
4:43 am
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...
14848 Igor Tandetnik
itandetnik Offline Send Email
Aug 3, 2007
11:44 am
"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 ...
14849 Angus Comber
anguscomber Offline Send Email
Aug 3, 2007
4:43 pm
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...
14850 Peter Carlson
strcarl813 Offline Send Email
Aug 3, 2007
7:20 pm
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...
14851 Andrew Fedoniouk
newsterrainf... Offline Send Email
Aug 3, 2007
8:30 pm
... 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...
14852 Andrew Fedoniouk
newsterrainf... Offline Send Email
Aug 3, 2007
8:51 pm
"Peter Carlson" <peter@...> wrote in message news:46B37FF8.60502@.... ... Find AUTOEXP.DAT somewhere under VS folder. You will get an...
14853 Michael Stephenson
domehead100 Offline Send Email
Aug 3, 2007
9:21 pm
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...
14854 Peter Carlson
strcarl813 Offline Send Email
Aug 3, 2007
10:13 pm
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....
14855 KG4LNE
bob_starr2003 Offline Send Email
Aug 3, 2007
10:21 pm
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...
14856 KG4LNE
bob_starr2003 Offline Send Email
Aug 3, 2007
11:26 pm
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...
14857 Ken Wilson
kennethjames... Offline Send Email
Aug 4, 2007
1:39 am
... in ... in ... to ... Impl::DispEventAdvise ... I have managed to progress slightly further. My controller class derives from IDispEventSimpleImpl as...
14858 Ryan Ginstrom
ryanginstrom Offline Send Email
Aug 4, 2007
3:29 am
... 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...
14859 Igor Tandetnik
itandetnik Offline Send Email
Aug 4, 2007
3:49 am
"Ken Wilson" <kwilson.dev@...> wrote in message news:f90lck+avt3@eGroups.com ... That's incorrect. Make it OnBeforeNavigate2Info = {CC_STDCALL, VT_EMPTY,...
14860 Thomas Hruska
shininglightpro Offline Send Email
Aug 4, 2007
5:20 pm
... 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...
14861 duyuor Offline Send Email Aug 6, 2007
6:14 am
[:-/] [Non-text portions of this message have been removed]...
14862 duyuor Offline Send Email Aug 6, 2007
6:20 am
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...
14863 duyuor Offline Send Email Aug 6, 2007
7:48 am
by default, the CTabCtrl has WS_OVERLAPPED(even you don't specifed in the Create function). so it has a border.i don't want this....
14864 ntufarellich Offline Send Email Aug 6, 2007
10:28 am
... 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,...
14865 Jim Barry
jim_barry.geo Offline Send Email
Aug 6, 2007
10:51 am
... Not true - you can use static linking. -- Jim Barry, MVP (Windows SDK)...
14866 Jim Barry
jim_barry.geo Offline Send Email
Aug 6, 2007
11:05 am
... 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...
Messages 14837 - 14866 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