Hi He Shiming, You may want to check this with my AeroDialog sample. Insert in MainDlg.h: // MainDlg.h : interface of the CMainDlg class // ...
15309
Bjarke Viksøe
bviksoe
Mar 1, 2008 4:29 pm
... That's great, but I'm talking about actually replicating the look'n39;feel of the Explorer SearchBox (wordwheel) - including the frame and semi/whitish...
15310
He Shiming
billholtsh
Mar 2, 2008 1:51 am
... 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....
15311
wtller
Mar 3, 2008 11:39 am
thx!...
15312
Bjarke Viksøe
bviksoe
Mar 3, 2008 1:44 pm
... The CAxPropertyPage in atldlgs.h would probably be of some help here. regards bjarke...
15313
Dick Dievendorff
g0mfo
Mar 5, 2008 2:40 am
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...
15314
domehead100
Mar 5, 2008 3:53 am
... 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...
15315
Dick Dievendorff
g0mfo
Mar 5, 2008 3:59 am
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...
15316
Roel Vanhout
rvanhout@...
Mar 5, 2008 1:47 pm
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. ...
15317
Dick Dievendorff
g0mfo
Mar 5, 2008 9:57 pm
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...
15318
luc.roels
Mar 6, 2008 10:25 am
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...
15319
Peter Carlson
strcarl813
Mar 7, 2008 4:18 pm
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...
15320
Igor Tandetnik
itandetnik
Mar 7, 2008 4:33 pm
Peter Carlson <peter@...> ... On Vista, IE runs in protected mode. Your application, and hence WebBrowser control it hosts, likely runs in...
15321
Peter Carlson
strcarl813
Mar 7, 2008 5:10 pm
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...
15322
Peter Carlson
strcarl813
Mar 7, 2008 5:13 pm
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...
15323
Jim Barry
jim_barry.geo
Mar 7, 2008 5:40 pm
... 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...
15324
domehead100
Mar 7, 2008 6:14 pm
... 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 ...
15325
Dick Dievendorff
g0mfo
Mar 8, 2008 12:32 am
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...
15326
domehead100
Mar 8, 2008 6:02 am
... Yes, there is a lot of message traffic in Windows! ... dialogs (tab ... but I ... You're probably already doing this...In message map: ...
15327
Dick Dievendorff
g0mfo
Mar 8, 2008 11:30 pm
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, ...
15328
Jim Barry
jim_barry.geo
Mar 10, 2008 11:19 am
... That won't work either, for the same reason - the build system does the dependency analysis before executing custom build steps. - Jim...
15329
Dick Dievendorff
g0mfo
Mar 15, 2008 4:08 pm
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...
15330
Charles Doty
cddoty
Mar 15, 2008 7:37 pm
... It looks like you need to set it to ignore library libcmt.lib....
15331
Charles Doty
cddoty
Mar 15, 2008 7:38 pm
... Are you building a console application?...
15332
Dick Dievendorff
g0mfo
Mar 16, 2008 12:02 am
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...
15333
dbrown0710
Mar 16, 2008 8:44 pm
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...
15334
Alain Rist
arnavpoch
Mar 16, 2008 11:23 pm
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. ...
15335
dbrown0710
Mar 17, 2008 12:34 am
Hi - just tried it, but it doesn't seem to work. I derive my class from CDialogImpl<> and CMenuDialog<>, and then I have: ...
15336
Alain Rist
arnavpoch
Mar 17, 2008 7:30 am
You probably handle WM_INITDIALOG before CMenuDialog<MyDialogName> has any chance to do it's job. To prevent that the simplest is to...
15337
dbrown0710
Mar 17, 2008 4:46 pm
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...