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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 11111 - 11140 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11111
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...
Peter Carlson
strcarl813
Offline Send Email
Feb 2, 2005
4:17 am
11112
... a ... status ... and ... I ... If you capture the mouse with the status bar's HWND, NM_CLICK should work. -Roger...
Roger Headrick
lilsroro
Offline Send Email
Feb 2, 2005
11:44 am
11113
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
Send Email
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...
mjd@...
dilworth_mike
Offline Send Email
Feb 2, 2005
12:17 pm
11115
NM_CLICK wont work as I need to do something like this: CMainFrame::OnParentNotify(...) { if (wParam == WM_LBUTTONDOWN) if (PANE == 2) SetCpature(); ...
Peter Carlson
strcarl813
Offline Send Email
Feb 2, 2005
2:58 pm
11116
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...
pablo_alch
Offline Send Email
Feb 2, 2005
3:20 pm
11117
... and ... Since the mainframe captured the mouse, the mainframe will get a WM_LBUTTONUP message when the button is released. ... WM_PARENTNOTIFY's lParam...
Roger Headrick
lilsroro
Offline Send Email
Feb 2, 2005
3:22 pm
11118
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...
Mike Dilworth
dilworth_mike
Offline Send Email
Feb 2, 2005
8:48 pm
11119
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...
jonshuler@...
jonshuler
Online Now Send Email
Feb 2, 2005
11:35 pm
11120
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...
Josh Clark
jpc8112
Offline Send Email
Feb 2, 2005
11:37 pm
11121
... a ... ResizeDialog.zip ... I don't believe CDialogResize supports resizing a group in 2 dimensions. My reading of DlgResize_UpdateLayout is that it either...
Roger Headrick
lilsroro
Offline Send Email
Feb 3, 2005
2:52 am
11122
... in ... are ... either ... BEGIN_DLGRESIZE_MAP(CMainDlg) BEGIN_DLGRESIZE_GROUP() DLGRESIZE_CONTROL(IDC_BUTTON1, DLSZ_SIZE_X) DLGRESIZE_CONTROL(IDC_BUTTON2,...
Roger Headrick
lilsroro
Offline Send Email
Feb 3, 2005
3:40 am
11123
... 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...
Noel Frankinet
gistek2000
Offline Send Email
Feb 3, 2005
7:56 am
11124
... Thank you, that fixed the problem. Jon...
jonshuler@...
jonshuler
Online Now Send Email
Feb 3, 2005
3:14 pm
11125
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
billholtsh
Offline Send Email
Feb 3, 2005
4:00 pm
11126
"He Shiming" <heshiming@...> wrote in message news:002101c50a09$684a4b50$0100a8c0@nova ... file:// URLs should fire BeforeNavigate2 the same as HTTP or...
Igor Tandetnik
itandetnik
Offline Send Email
Feb 3, 2005
5:10 pm
11127
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...
He Shiming
billholtsh
Offline Send Email
Feb 4, 2005
12:53 pm
11128
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...
smzurcher
Offline Send Email
Feb 4, 2005
3:01 pm
11129
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...
Michael
mddg2002
Offline Send Email
Feb 4, 2005
3:40 pm
11130
Hi Stephen What version of WTL do you use ? If you get that problem with the last 7.5 distribution: WTL 7.5.5002.0 at ...
arnavpoch
Offline Send Email
Feb 4, 2005
5:55 pm
11131
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
Send Email
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 ...
Fernando
chuck_berrys...
Offline Send Email
Feb 5, 2005
4:13 am
11133
... 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...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Feb 5, 2005
8:10 am
11134
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...
He Shiming
billholtsh
Offline Send Email
Feb 5, 2005
12:33 pm
11135
... 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...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Feb 5, 2005
1:22 pm
11136
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...
billholtsh
Offline Send Email
Feb 5, 2005
2:35 pm
11137
... 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 >...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Feb 5, 2005
3:23 pm
11138
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,...
billholtsh
Offline Send Email
Feb 5, 2005
5:22 pm
11139
... 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 ...
Ryan Ginstrom
ryanginstrom
Offline Send Email
Feb 5, 2005
11:36 pm
11140
I think the URL begins with catch22.org or something like that! ... -- ... Accept nothing short of perfection! - anon...
Thomas, Derick
derickcyril
Offline Send Email
Feb 6, 2005
4:18 am
Messages 11111 - 11140 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