Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 8332 - 8362 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8332 robert_caldecott
robert_calde... Offline Send Email
Apr 1, 2004
8:53 am
Does this actually work? I am using this with some menu items in a WTL command bar and nothing happens - I have to use UISetCheck to get any visual clues....
8333 Roger Headrick
lilsroro Offline Send Email
Apr 1, 2004
10:23 am
... get ... using ... To get a menu item to display a radio check r/t a standard check, change its type to MFT_RADIOCHECK and use UISetCheck to display/hide ...
8334 Malcolm Ferguson
malcolm_ferg... Offline Send Email
Apr 1, 2004
1:39 pm
I've just tried to upgrade from WTL 7.0 to WTL 7.1. I'm working with an ATL project that uses some WTL in MSVC 6. The debug configuration compiles fine, as...
8335 Mike Diack
mikediack Offline Send Email
Apr 1, 2004
1:59 pm
Hi I'm currently using the IWebBrowser2 interface and navigate method to embed a web browser in a WTL application of mine. All seems well until I exit, when I...
8336 Peter Carlson
strcarl813 Offline Send Email
Apr 1, 2004
2:42 pm
I cant say I know the exact cause of your problem, however this is the code I use without any leaks void CWndBrowser::Navigate(TCHAR *url) { CComVariant v; if...
8337 Igor Tandetnik
itandetnik Offline Send Email
Apr 1, 2004
3:54 pm
"Malcolm Ferguson" <malc_wtl_support_list@...> wrote in message news:406BAE99.6010405@... ... The problem is described in WTL 7.1...
8338 Roel Vanhout
RoelVanhout Offline Send Email
Apr 1, 2004
7:09 pm
Hello Roger, ... No I don't. I don't even have a command bar. What I maybe should have mentioned is that my view is a form view. More or less by random ...
8339 Malcolm Ferguson
malcolm_ferg... Offline Send Email
Apr 1, 2004
7:16 pm
... You're absolutely right! I knew I'd read it somewhere but didn't think to go back to the release notes. You're also right that the suggested solution...
8340 Roger Headrick
lilsroro Offline Send Email
Apr 1, 2004
8:54 pm
Hi Roel, ... PreTranslateMessage ... have ... to 'true' in ... When you create a application with the WTL Wizard, a command bar is used instead of a standard...
8342 Rick Parrish
ultra_wide_band Offline Send Email
Apr 1, 2004
9:23 pm
... It's the menu in the top left corner in the title-bar / non-client area. Clicking on it gives the move, size, minimize, maximize, close menu options (plus...
8343 Alex Lai
cwalexlai Offline Send Email
Apr 2, 2004
4:39 am
Here is a link from Microsoft which I found it useful..... ...
8344 Roel Vanhout
RoelVanhout Offline Send Email
Apr 2, 2004
7:07 am
... Well I'm a bit backwards wrt to wizards :) I rather write things manually the first few times I do things, it invariably gets me into this sort of obscure...
8345 murali karunakaran
murali_507 Offline Send Email
Apr 2, 2004
10:29 am
Hi, For GridLines u add the following lines of code in OnItemPostPaint() after DrawTreeItem() if(m_bGridLines) //whether u want gridlines or not. { RECT rcItem...
8346 Roel Vanhout
RoelVanhout Offline Send Email
Apr 2, 2004
2:55 pm
Hello all, What is the difference between ATL::CString and WTL::CString? Is one of them a 'temporary' or 'legacy' class? Does one of them have more features...
8347 Igor Tandetnik
itandetnik Offline Send Email
Apr 2, 2004
3:09 pm
"Roel Vanhout" <roel@...> wrote in message news:406D7F84.60202@... ... ATL::CString has richer functionality. It's heavily policy-based, so you can...
8348 Stephen Spencer
stephen.spencer@... Send Email
Apr 2, 2004
3:19 pm
I assume you're talking version 7 of ATL and/or WTL. The simplest way to do a conversion is with the conversion macros. There are new/changed versions of these...
8349 Roel Vanhout
RoelVanhout Offline Send Email
Apr 2, 2004
3:30 pm
... Yes I was - I should have mentioned that. ... Ok thanks - I dumped WTL::CString and now all is bliss again :) cheers, roel...
8350 Roel Vanhout
RoelVanhout Offline Send Email
Apr 2, 2004
3:31 pm
... Thanks for the great explanation! After fiddling around a bit I found out that I have to include <atlstr.h> before any other atl classes and then my...
8351 Peter Carlson
strcarl813 Offline Send Email
Apr 2, 2004
6:32 pm
Anyone know of a scribble like application written in WTL? Am looking to do some GDI learning and possibly develop a whiteboard app. Peter...
8352 cr999
cr_999 Offline Send Email
Apr 3, 2004
9:04 am
I want to create a window and i don't want to see it on the taskbar that on the bottom of the screen, what should i do ? any suggestion? [Non-text portions of...
8353 Roger Headrick
lilsroro Offline Send Email
Apr 3, 2004
1:26 pm
... taskbar that on the bottom of the screen, what should i do ? ... Per MSDN - The Shell creates a button on the taskbar whenever an application creates a...
8354 Domas
domas_s Offline Send Email
Apr 3, 2004
1:43 pm
Hello, I'm trying to set window rectangle for CRicheditCtrl descendant in my application, in MFC I use OnInitial update message handler, but there is no such...
8355 Roger Headrick
lilsroro Offline Send Email
Apr 3, 2004
1:59 pm
... my ... there is ... too ... rect from ... be ... You might try handling WM_SIZE with some member flag telling you whether you are initializing. First pass...
8356 Roger Headrick
lilsroro Offline Send Email
Apr 3, 2004
2:06 pm
... in ... is ... to ... Also, when you tried using a WM_CREATE handler, did you first pass the message to DefWindowProc before calling SetRect? If not, that ...
8357 Domas
domas_s Offline Send Email
Apr 3, 2004
4:13 pm
... Here's my WM_CREATE handler: LRESULT CEditView::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { LRESULT lRet = DefWindowProc(uMsg,...
8358 freehawk2004 Offline Send Email Apr 5, 2004
1:46 am
You are great, Thank you very very much. I added the following source code, It run good. Could you teach me how to make the cells of list to be enable to be ...
8359 Larry Azlin
espresso1736 Offline Send Email
Apr 5, 2004
2:45 am
Long ago I saw an admonition in MSDN about always putting USES_CONVERSION as the very first statement in a function, and although it seems like a bit of...
8360 fury73de Offline Send Email Apr 5, 2004
9:53 am
Hi, I followed the tutorial and now I have dropdown arrows. But I can't press these arrow buttons. On WinXP they aren't flat. How can I correct that? Thx in...
8361 Roger Headrick
lilsroro Offline Send Email
Apr 5, 2004
10:28 am
... can't ... If you are referring to a dropdown button on a toolbar, the toolbar needs to have either the TBSTYLE_FLAT or TBSTYLE_LIST window style and the...
8362 fury73de Offline Send Email Apr 5, 2004
12:10 pm
Sorry, yes I'm referring to toolbar buttons ;) That's my code: if( CreateSimpleToolBar()) { CToolBarCtrl wnd( m_hWndToolBar); wnd.ModifyStyle( 0,...
Messages 8332 - 8362 of 16586   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