Search the web
Sign In
New User? Sign Up
wtl · WTL support list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 15308 - 15337 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15308
Hi He Shiming, You may want to check this with my AeroDialog sample. Insert in MainDlg.h: // MainDlg.h : interface of the CMainDlg class // ...
Alain Rist
arnavpoch
Offline Send Email
Mar 1, 2008
11:00 am
15309
... That's great, but I'm talking about actually replicating the look'n'feel of the Explorer SearchBox (wordwheel) - including the frame and semi/whitish...
Bjarke Viksøe
bviksoe
Offline Send Email
Mar 1, 2008
4:29 pm
15310
... always ... a ... I see. But it's really not that difficult to implement the search box. Obviously Microsoft doesn't want to share the information with us....
He Shiming
billholtsh
Offline Send Email
Mar 2, 2008
1:51 am
15311
thx!...
wtller
Offline Send Email
Mar 3, 2008
11:39 am
15312
... The CAxPropertyPage in atldlgs.h would probably be of some help here. regards bjarke...
Bjarke Viksøe
bviksoe
Offline Send Email
Mar 3, 2008
1:44 pm
15313
I have a dialog page with a number of buttons and edit controls, and then a horizontal splitter window containing two rich edit controls. One is read-only and...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 5, 2008
2:40 am
15314
... Tabbing ... Hi Dick, I don't know why splitter's don't like WS_TABSTOP or why tabbing doesn't seem to work properly with them, but as a workaround you...
domehead100
Offline Send Email
Mar 5, 2008
3:53 am
15315
Thanks again, Michael! I have a PreTranslateMessage (it just contains return IsDialogMessage(pMsg). I also had to add a WM_FORWARDMSG handler to each of the...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 5, 2008
3:59 am
15316
Hi, I'm trying to implement printing in my WTL application but I don't have any experience with printing on Windows outside of MFC, so I have some questions. ...
Roel Vanhout
rvanhout@...
Send Email
Mar 5, 2008
1:47 pm
15317
I found a couple of new skills in this search! First, when I create a splitter and need to add the WS_TABSTOP window style, I need to provide the entire list...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 5, 2008
9:57 pm
15318
Hi, I created a complete application inside a WTL dll. The idea being that the application can be launched from either an exe or from within an activeX...
luc.roels
Offline Send Email
Mar 6, 2008
10:25 am
15319
Is there a difference in a hosted browser (IWebBrowser) and a regular IE browser? On Vista, we have a problem with our wtl app hosting IWebBrowser. The basic...
Peter Carlson
strcarl813
Offline Send Email
Mar 7, 2008
4:18 pm
15320
Peter Carlson <peter@...> ... On Vista, IE runs in protected mode. Your application, and hence WebBrowser control it hosts, likely runs in...
Igor Tandetnik
itandetnik
Offline Send Email
Mar 7, 2008
4:33 pm
15321
Thanks Igor..that helps, now I just need to find a way around it :) For now we are launching the browser externally on vista, it's just not as "clean" visually...
Peter Carlson
strcarl813
Offline Send Email
Mar 7, 2008
5:10 pm
15322
I know this message is off topic. I've posted the message to ms newsgroups with no response so far, and there's some really sharp people who monitor this...
Peter Carlson
strcarl813
Offline Send Email
Mar 7, 2008
5:13 pm
15323
... Yes, it seems that the dependency checking is already done by the time the pre-build event happens. The only way I have found to get this sort of thing...
Jim Barry
jim_barry.geo
Offline Send Email
Mar 7, 2008
5:40 pm
15324
... It ... time the pre-build event happens. The only way I have found to get this sort of thing working is to create a separate project that performs the ...
domehead100
Offline Send Email
Mar 7, 2008
6:14 pm
15325
I'm trying to figure out WM_FORWARDMSG. I have a mainframe that hosts a CTabView, and that CTabView has a number of dialogs. I can see that CTabView forwards...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 8, 2008
12:32 am
15326
... Yes, there is a lot of message traffic in Windows! ... dialogs (tab ... but I ... You're probably already doing this...In message map: ...
domehead100
Offline Send Email
Mar 8, 2008
6:02 am
15327
I'm using the MSG_WM_FORWARDMSG(OnForwardMsg) to get to my OnForwardMsg handler, but I within OnForwardMsg I think I should be using the message map again, ...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 8, 2008
11:30 pm
15328
... That won't work either, for the same reason - the build system does the dependency analysis before executing custom build steps. - Jim...
Jim Barry
jim_barry.geo
Offline Send Email
Mar 10, 2008
11:19 am
15329
I just acquired Visual Studio 2008 and see that it no longer supports Windows 98. I'm using Visual Studio 2005 now. I had hoped that I might be able to use...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 15, 2008
4:08 pm
15330
... It looks like you need to set it to ignore library libcmt.lib....
Charles Doty
cddoty
Offline Send Email
Mar 15, 2008
7:37 pm
15331
... Are you building a console application?...
Charles Doty
cddoty
Offline Send Email
Mar 15, 2008
7:38 pm
15332
No, it's a WTL Windows App. I thought maybe my static initializers might require CRT code, but they're the same in debug and retail. I'll try removing the...
Dick Dievendorff
g0mfo
Offline Send Email
Mar 16, 2008
12:02 am
15333
Is it possible to have a modal dialog in my WTL app which behaves like a popup menu in that it will EndDialog when the user clicks the mouse anywhere outside...
dbrown0710
Offline Send Email
Mar 16, 2008
8:44 pm
15334
Derive from CMenuDialog in atldlgx.h in the files section of this group. See Unusual but Useful Dialog-based Classes Designed for Specialization for more. ...
Alain Rist
arnavpoch
Offline Send Email
Mar 16, 2008
11:23 pm
15335
Hi - just tried it, but it doesn't seem to work. I derive my class from CDialogImpl<> and CMenuDialog<>, and then I have: ...
dbrown0710
Offline Send Email
Mar 17, 2008
12:34 am
15336
You probably handle WM_INITDIALOG before CMenuDialog<MyDialogName> has any chance to do it's job. To prevent that the simplest is to...
Alain Rist
arnavpoch
Offline Send Email
Mar 17, 2008
7:30 am
15337
Yes, that was it! Thank you :) ... has any chance to do it's job. ... (CMenuDialog<CAboutDlg>) on top of your message map. ... WM_INITDIALOG, WM_ACTIVATE, and...
dbrown0710
Offline Send Email
Mar 17, 2008
4:46 pm
Messages 15308 - 15337 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help