Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

wtl · WTL support list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Messages

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

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