Standard WTL appp, SDI. Multipane status bar. I want to activate a feature of the software if a user clicks in a certain pane of the status bar, lets say...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File : /mysplit.zip ...
wtl@yahoogroups.com
Feb 2, 2005 12:10 pm
11114
hi all As part of my learning process I have been experimenting with MDI Tabs, splitter, and dialog views. The preliminary results of these experiments i have...
NM_CLICK wont work as I need to do something like this: CMainFrame::OnParentNotify(...) { if (wParam == WM_LBUTTONDOWN) if (PANE == 2) SetCpature(); ...
See http://www.codeproject.com/wtl/MultiPaneStatusBarEx.asp The classes there let you put just about anything on top of a status bar pane. In your case, a...
... and ... Since the mainframe captured the mouse, the mainframe will get a WM_LBUTTONUP message when the button is released. ... WM_PARENTNOTIFY's lParam...
Hi all After a little more digging around I managed to resolve ... I found that in CNoFlickerDialogResize the override of DlgResize_Init was forcing the style...
I'm trying to use the CDialogResize class to resize the buttons in a dialog. I defined a resize group for the buttons so that they are resized together. For...
I'm about to start a new project and we will be needing a grid control for it. Anyone have any experience with WTL friendly grid controls they'd like to...
... a ... ResizeDialog.zip ... I don't believe CDialogResize supports resizing a group in 2 dimensions. My reading of DlgResize_UpdateLayout is that it either...
... in ... are ... either ... BEGIN_DLGRESIZE_MAP(CMainDlg) BEGIN_DLGRESIZE_GROUP() DLGRESIZE_CONTROL(IDC_BUTTON1, DLSZ_SIZE_X) DLGRESIZE_CONTROL(IDC_BUTTON2,...
... I have written a Grid from a scrollwindow and STL. It has eveolved into a property editor that works quite well on win32 and CE. You can grab it on...
Hi Group Members, I'm developing this WTL-based application which hosts a WebBrowser control. I've implemented the event-sink for IWebBrowser BeforeNavigate2...
"He Shiming" <heshiming@...> wrote in message news:002101c50a09$684a4b50$0100a8c0@nova ... file:// URLs should fire BeforeNavigate2 the same as HTTP or...
Hi Igor, I've built a small project that reproduce the issue I mentioned in the first message. Basically, the project is built using the WTL wizard, with the...
Hello, I was pointed here at the WTL Sourceforge site. I am developing an application using WTL with eMbedded Visual C++ 4.0 specifically for Pocket PC 2003...
Could someone tell me whether I've got this right? My app has an object model (much like Office or Visual Studio) and I'm looking again at how my objects are...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File : /mdi_split_2.ZIP ...
wtl@yahoogroups.com
Feb 5, 2005 3:59 am
11132
Hello There is an article on codeproject showing how to put an mdi client in a pane of a splitter winodow, it uses SetParent to change m_hWndMDIClient 's ...
... I think I have run into this problem before. What I do is put a blank HTML document in my resources, then load that into the browser. The format is...
Hi, Thank you for the information. I tried creating the webbrowser control with res://module.dll/#123 as window name, as well as navigating to a resource URL...
... I think you need to include the entire path to your application. Here is basically what I do. I create the control with _T("about:blank"). After the...
I changed my code according to your suggestions, and now I can successfully navigate to a resource URL. However, BeforeNavigate2 still wasn't able to catch...
... I use the put_innerHTML() method of the Body element. To do so, I do the following from the CHtmlView class. // get the browser CComPtr< IWebBrowser2 >...
Well, it did work. If I write content into the body element, file:// links as well as those plain C:\abc.txt links can both be caught by BeforeNavigate2. But,...
... Unfortunately, that doesn't work. There are certain things you can change in the <HEAD> region, like the title. And you can programmatically change the ...