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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 15800 - 15830 of 16191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15800
I'm wrestling with a Rich Edit control that I'm using as a read-only event logging window. When events occur, I AppendText to the rich edit control. I also...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 2, 2009
5:35 am
15801
What version of ATL/WTL is required? Is this a reason to upgrade? I am not sure what the issue is here? ... From: Igor Tandetnik To: wtl@yahoogroups.com ...
Angus Comber
anguscomber
Offline Send Email
Feb 2, 2009
7:46 am
15802
... see this: (it's written for 64 bit but it's also for general ATL3 code) www.zabkat.com/blog/26Oct08-x64-development-with-VS6-and-ATL3.htm...
Nikos Bozinis
umeca74
Offline Send Email
Feb 2, 2009
8:22 am
15803
Hi Dick, I'll just throw out some thoughts: 1) You might try to eat the WM_SETFOCUS message when it is received by the rich edit. If you eat it (either in a...
domehead100
Offline Send Email
Feb 2, 2009
2:44 pm
15804
Hi again I had a mistake in my suggestion. The correct one seems to be:         if (d == 0.0 && chFirst != _T('0') && chFirst != _T('-')) Any other...
Mojtaba Fathi
modjtabaf
Offline Send Email
Feb 2, 2009
5:18 pm
15805
Hi All I use DDX_FLOAT_P macro in my application to read a double number from an Edit control. But whenever the user enters "-0" in Edit box, it simply fails....
Mojtaba Fathi
modjtabaf
Offline Send Email
Feb 2, 2009
5:18 pm
15806
Thanks, Mike, you've given me a lot of leads. I do want to allow the user to select text from the rich edit control, so I don't want to disable it. Adding an...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 2, 2009
5:44 pm
15807
Found it. I was kicking off the long-running operation from my OnInitDialog method. I saved the cursor that was then current, which happened to be the wait...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 2, 2009
6:54 pm
15808
Hi Moji, ... Looks reasonable, although I'd suggest that the floating point comparison with zero is a bad idea too (I've seen code fail in production for...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Feb 2, 2009
7:30 pm
15809
Anna-Jayne Metcalfe <yahoo@...> ... _tcstod returns exactly 0.0 when it fails. If it returns anything other than zero - however small - then it...
Igor Tandetnik
itandetnik
Offline Send Email
Feb 2, 2009
7:45 pm
15810
Let me know what you figure out.. I'm looking for something similar.. I’ll keep you updated as well -Jens   ... From: Igor Tandetnik <itandetnik@...> ...
Jens Sorensen
jenslsorensen
Offline Send Email
Feb 2, 2009
9:44 pm
15812
Hi guys Thnaks for your responses. As Igor mentions, Anna-Jayne's case is not true, because _tcstod returns exactly 0 (and not a very very small real number)...
Mojtaba Fathi
modjtabaf
Offline Send Email
Feb 3, 2009
6:41 am
15813
Hi Ignor, ... than zero - however small - then it succeeded. I didn't realise that - thanks for the correction. I would however suggest that in such edge cases...
Anna-Jayne Metcalfe
jalapenokitten
Offline Send Email
Feb 3, 2009
9:06 am
15814
... Please do not send test messages. This is a waste of everyone's time. Those who do so will be set back to moderated status. John Wilkinson WTL group...
johndiiix
Offline Send Email
Feb 3, 2009
10:44 pm
15815
Hi, I'm trying to set a focus into a text edit area in a modal dialog i have. And i just can't do it. 1. The dialog is modal. So i call dlg.DoModal(); 2. ...
amante1il
Offline Send Email
Feb 4, 2009
10:11 am
15816
... You need to return FALSE from OnInitDialog to prevent the dialog manager from setting the initial keyboard focus. -- Jim Barry, Microsoft MVP...
Jim Barry
jim_barry.geo
Offline Send Email
Feb 4, 2009
10:25 am
15817
... manager from setting the initial keyboard focus. ... Thanks, It worked ;-) So easy, just some time it's on my blind side....
amante1il
Offline Send Email
Feb 4, 2009
11:52 am
15818
You might also find CWindow::GotoDlgCtrl useful syntactic sugar for your SendMessage. Instead of CWindow i(GetDlgItem(IDC_EDIT_COMMENTTEXT)); ...
Dick Dievendorff
g0mfo
Offline Send Email
Feb 4, 2009
12:20 pm
15819
Hi In file atlcrack.h, 'OnSysCommand' prototype is shown as // void OnSysCommand(UINT nID, LPARAM lParam) but it should be // void OnSysCommand(UINT nID,...
Mojtaba Fathi
modjtabaf
Offline Send Email
Feb 4, 2009
7:36 pm
15820
Hello, im rebuilding an old project in visual studio 6. Im using WTL 8.0. I get error messages complaining that WTL::_U_STRINGorID doesnt exist. Where is it ? ...
Fernando
chuck_berrys...
Offline Send Email
Feb 4, 2009
7:45 pm
15821
... 8.0. ... exist. Where ... It's a class defined in AtlApp.h in WTL 3 through 7.1, designed to automatically use the MAKEINTRESOURCE macro for calls that...
johndiiix
Offline Send Email
Feb 4, 2009
7:58 pm
15822
... That's a comment, not a prototype, but you are correct. Please file a bug on SourceForge (http://sourceforge.net/projects/wtl/). Thanks, John...
johndiiix
Offline Send Email
Feb 4, 2009
8:23 pm
15823
Hello, Since im using VC++ 6.0 , im using ATL 3 with WTL 8. So this and other simmilar classes dont get defined anywhere. Where can i get WTL 7.1 so i can just...
Fernando
chuck_berrys...
Offline Send Email
Feb 4, 2009
8:49 pm
15824
... WTL 7.5 is available on the SourceForge download page (use the "WTL on SourceForge" link on the group Links page). I do not know if that version has the...
johndiiix
Offline Send Email
Feb 4, 2009
8:52 pm
15825
... True, through it could be argued that the prototype is correct and the implementation is wrong. When wParam is SC_HOTKEY or SC_KEYMENU, lParam does not...
Jim Barry
jim_barry.geo
Offline Send Email
Feb 5, 2009
10:54 am
15826
Hi Fernado, WTL::_U_STRINGorID is defined in WTL 8.0 atlwinx.h at line #456, guarded by #if (_ATL_VER < 0x0700) at line #431; atlwinx.h is included by atlapp.h...
Alain Rist
arnavpoch
Offline Send Email
Feb 5, 2009
11:21 am
15827
Hi I think so. It is better to pass the lParam without modification and let the user to handle it. Regards Moji the Great ... From: Jim Barry...
Mojtaba Fathi
modjtabaf
Offline Send Email
Feb 5, 2009
11:51 am
15828
... I suppose the atlcrack macro can't really be changed, for compatibility reasons. It's no big deal, I guess, as you can always use GetCurrentMessage to...
Jim Barry
jim_barry.geo
Offline Send Email
Feb 5, 2009
12:22 pm
15829
hello, everyone:     i host a Web Browser Control in my WTL-based App to show HTML files . These HTML files server as the App's UI.   The App's UI i feel...
carr 帅
shuaixh
Offline Send Email
Feb 6, 2009
1:09 am
15830
This is just a repost - to ask if anyone has anny suggestions? Thanks...
arasakumaran
Offline Send Email
Feb 6, 2009
7:30 am
Messages 15800 - 15830 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