... 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...
... 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....
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...
... 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...
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...
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@...
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...
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...
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...
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...
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...
... 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...
... 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 ...
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...
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, ...
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...
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...
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...
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. ...
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...