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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 14970 - 15001 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14970
Hi guys, What's your recommended method/tool to detect memory/resource leaks in our WTL program? In the past, we have used BoundChecker (for Visual Studio 6),...
Ingar Steinsland
ingarrune
Offline Send Email
Oct 1, 2007
10:44 am
14971
Even a simple MessageBox() function in a WTL dll that shows a dialog doesn't seem to work. The messagebox shows up, but no buttons can be pressed. Why is...
luc.roels
Offline Send Email
Oct 1, 2007
2:01 pm
14972
I've used various products like bounds checker and purify in the past, and have found that for me the easiest thing to do is check for memory leaks using the...
Ryan Ackerman
ryanackerman81
Online Now Send Email
Oct 1, 2007
4:07 pm
14973
I have been using Visual Leak Detector from CodeProject. One nice thing about it is it gives a stack trace for the allocation. ...
Arnette, Bill
cessna048
Online Now Send Email
Oct 1, 2007
4:35 pm
14974
I place ATLTRACE2(atlTraceRefcount,1,_T("XXX object created (%p)\n"), this); in each FinalConstruct() and ATLTRACE2(atlTraceRefcount,1,_T("XXXXX object...
Konstantin Mironovich
const_at_ixbt
Offline Send Email
Oct 1, 2007
4:44 pm
14975
... MyTabCtrl? ... No luck. Here are the classes for reference: http://cpp.tastethepaste.org/270 . And here is the full project:...
wakashi0001
Offline Send Email
Oct 1, 2007
7:25 pm
14976
Hi Luc, ... It sounds like you may have a message loop problem. Are you by any chance running it from within a worker thread? Another thing to check is that...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Oct 1, 2007
8:21 pm
14977
What is shown on your posted code sample should work. I will note that your tab class in the sample is MyTab, but your BEGIN_MSG_MAP_EX() has the class as...
Michael Stephenson
domehead100
Offline Send Email
Oct 1, 2007
8:48 pm
14978
... that your ... the class ... correct ... Indeed, the initial pasted version had a wrong message map -- just a copy/paste problem. Nevertheless, the current...
wakashi0001
Offline Send Email
Oct 2, 2007
6:28 am
14979
1.. In Dialog.rc suppress the WS_DISABLED style on your IDD_TAB1 and IDD_TAB2 : STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD /*| WS_DISABLED*/ 2.. In Tab1.h set...
Alain Rist
arnavpoch
Offline Send Email
Oct 2, 2007
8:17 am
14980
... Thanks a ton! Such a simple problem -- usually these are the hardest to find :) Didn't notice that the dialog is disabled in resources and would have never...
wakashi0001
Offline Send Email
Oct 2, 2007
8:52 am
14981
... It doesn't actually make any difference what you put for the parameter to BEGIN_MSG_MAP or BEGIN_MSG_MAP_EX, because the parameter is never used! -- Jim...
Jim Barry
jim_barry.geo
Offline Send Email
Oct 2, 2007
9:25 am
14982
I've finally found the problem. My calling application had an WM_ACTIVATE handler which seemed to cause the problem. ... dialog ... be ... chance ... that the ...
luc.roels
Offline Send Email
Oct 2, 2007
10:12 am
14983
Hi, It seems that the COMMAND_ID_HANDLER(IDC_BUTTON,OnButton) calls the OnButton function when the left mouse button is released. For my application, a camera...
luc.roels
Offline Send Email
Oct 4, 2007
8:49 am
14984
All, I'm having some trouble with an owner drawn static control. Basically the performance is awful when I owner draw (Windows Mobile targeted app but the...
Tim
redbuttcisco
Offline Send Email
Oct 4, 2007
5:54 pm
14985
There is an easy solution: create your own custom messages, one for the button down and one for the button up, and have the button send those messages to the...
domehead100@...
domehead100
Offline Send Email
Oct 5, 2007
2:52 pm
14986
I'm not sure if it works, anyway try to return 0 instead of TRUE from OnPaint, as stated in Platform SDK for WM_PAINT message. Bye, Nick ... Mobile ... do ... ...
ntufarellich
Offline Send Email
Oct 5, 2007
3:47 pm
14989
If only my friend...Not sure what exactly the SDK is intending here. Returning TRUE should indicate we took care of drawing and don't require default PAINT....
Tim
redbuttcisco
Offline Send Email
Oct 6, 2007
1:19 am
14990
To handle a right-click by adding a handler for the WM_CONTEXTMENU notification and processing it. Check out WM_CONTEXTMENU in the documentation. For...
domehead100@...
domehead100
Offline Send Email
Oct 6, 2007
2:00 am
14991
i heard that BCB can support WTL like VC does. BCB is a RAD tool while VC isn't. Is WTL-based apps development in BCB faster than that in VC ?...
shuaixh
Offline Send Email
Oct 6, 2007
7:13 am
14992
"shuaixh" <shuaixh@...> wrote in message news:fe7cil+jd0v@eGroups.com ... No. BCB supports WTL in the sense that it has a C++ compiler that can ...
Igor Tandetnik
itandetnik
Offline Send Email
Oct 6, 2007
12:58 pm
14993
Figured it out....The problem wasn't in the paint code at all but rather was the ATLTRACE message. Turns out that ATLTRACE is a pretty expensive operation....
Tim
redbuttcisco
Offline Send Email
Oct 8, 2007
2:21 am
14994
Sorry, what is BCB? Thanks. Regards, Andrea [Non-text portions of this message have been removed]...
Andrea De Nardis
beppe_genco
Offline Send Email
Oct 8, 2007
7:12 am
14995
Borland C++ Builder _____ From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] On Behalf Of Andrea De Nardis Sent: Monday, October 08, 2007 3:12 AM To:...
Michael Stephenson
domehead100
Offline Send Email
Oct 8, 2007
11:17 am
14996
"Andrea De Nardis" <a.denardis@...> wrote in message news:000701c8097a$849ab290$5100a8c0@... ... Borland C++ Builder:...
Igor Tandetnik
itandetnik
Offline Send Email
Oct 8, 2007
11:23 am
14997
Hi Folks, I'm working on a custom combobox that will be used for selecting files/folders in a property list. When the combo has the DROPDOWNLIST style such...
Michael Stephenson
domehead100
Offline Send Email
Oct 8, 2007
4:39 pm
14998
... Pretty stupid, isn't it? The problem is that after the tooltip has "popped", it doesn't detect the mouse leaving the control. You can work around it by...
Jim Barry
jim_barry.geo
Offline Send Email
Oct 10, 2007
3:09 pm
14999
... Thanks much for the info; makes sense. Yeah, it's pretty silly. What I did since Monday was to convert the tooltip to a tracking tooltip, which gives me...
Michael Stephenson
domehead100
Offline Send Email
Oct 10, 2007
8:53 pm
15000
i have been programming WTL apps for quite a long time, these days ,i find it boring to deal with GUI elements in C++. beautiful GUI is hard to make with raw...
shuaixh
Offline Send Email
Oct 11, 2007
6:38 am
15001
... There is a lot out there on using an HTML rendering engine for the UI in compiled apps. You might Google: wtl html rendering Some interesting hits...
Michael Stephenson
domehead100
Offline Send Email
Oct 11, 2007
12:18 pm
Messages 14970 - 15001 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