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...
Show off your group to the world. Share a photo of your group with us.

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 8332 - 8362 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8332
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....
robert_caldecott
robert_calde...
Offline Send Email
Apr 1, 2004
8:53 am
8333
... 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 ...
Roger Headrick
lilsroro
Offline Send Email
Apr 1, 2004
10:23 am
8334
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...
Malcolm Ferguson
malcolm_ferg...
Offline Send Email
Apr 1, 2004
1:39 pm
8335
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...
Mike Diack
mikediack
Offline Send Email
Apr 1, 2004
1:59 pm
8336
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...
Peter Carlson
strcarl813
Offline Send Email
Apr 1, 2004
2:42 pm
8337
"Malcolm Ferguson" <malc_wtl_support_list@...> wrote in message news:406BAE99.6010405@... ... The problem is described in WTL 7.1...
Igor Tandetnik
itandetnik
Offline Send Email
Apr 1, 2004
3:54 pm
8338
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 ...
Roel Vanhout
RoelVanhout
Offline Send Email
Apr 1, 2004
7:09 pm
8339
... 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...
Malcolm Ferguson
malcolm_ferg...
Offline Send Email
Apr 1, 2004
7:16 pm
8340
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...
Roger Headrick
lilsroro
Offline Send Email
Apr 1, 2004
8:54 pm
8342
... 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...
Rick Parrish
ultra_wide_band
Offline Send Email
Apr 1, 2004
9:23 pm
8343
Here is a link from Microsoft which I found it useful..... ...
Alex Lai
cwalexlai
Offline Send Email
Apr 2, 2004
4:39 am
8344
... 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...
Roel Vanhout
RoelVanhout
Offline Send Email
Apr 2, 2004
7:07 am
8345
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...
murali karunakaran
murali_507
Offline Send Email
Apr 2, 2004
10:29 am
8346
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...
Roel Vanhout
RoelVanhout
Offline Send Email
Apr 2, 2004
2:55 pm
8347
"Roel Vanhout" <roel@...> wrote in message news:406D7F84.60202@... ... ATL::CString has richer functionality. It's heavily policy-based, so you can...
Igor Tandetnik
itandetnik
Offline Send Email
Apr 2, 2004
3:09 pm
8348
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...
Stephen Spencer
stephen.spencer@...
Send Email
Apr 2, 2004
3:19 pm
8349
... Yes I was - I should have mentioned that. ... Ok thanks - I dumped WTL::CString and now all is bliss again :) cheers, roel...
Roel Vanhout
RoelVanhout
Offline Send Email
Apr 2, 2004
3:30 pm
8350
... 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...
Roel Vanhout
RoelVanhout
Offline Send Email
Apr 2, 2004
3:31 pm
8351
Anyone know of a scribble like application written in WTL? Am looking to do some GDI learning and possibly develop a whiteboard app. Peter...
Peter Carlson
strcarl813
Offline Send Email
Apr 2, 2004
6:32 pm
8352
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...
cr999
cr_999
Offline Send Email
Apr 3, 2004
9:04 am
8353
... 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...
Roger Headrick
lilsroro
Offline Send Email
Apr 3, 2004
1:26 pm
8354
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...
Domas
domas_s
Offline Send Email
Apr 3, 2004
1:43 pm
8355
... 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...
Roger Headrick
lilsroro
Offline Send Email
Apr 3, 2004
1:59 pm
8356
... 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 ...
Roger Headrick
lilsroro
Offline Send Email
Apr 3, 2004
2:06 pm
8357
... Here's my WM_CREATE handler: LRESULT CEditView::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { LRESULT lRet = DefWindowProc(uMsg,...
Domas
domas_s
Offline Send Email
Apr 3, 2004
4:13 pm
8358
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 ...
freehawk2004
Offline Send Email
Apr 5, 2004
1:46 am
8359
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...
Larry Azlin
espresso1736
Offline Send Email
Apr 5, 2004
2:45 am
8360
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...
fury73de
Offline Send Email
Apr 5, 2004
9:53 am
8361
... 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...
Roger Headrick
lilsroro
Offline Send Email
Apr 5, 2004
10:28 am
8362
Sorry, yes I'm referring to toolbar buttons ;) That's my code: if( CreateSimpleToolBar()) { CToolBarCtrl wnd( m_hWndToolBar); wnd.ModifyStyle( 0,...
fury73de
Offline Send Email
Apr 5, 2004
12:10 pm
Messages 8332 - 8362 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