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...
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 ...
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...
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....
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...
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...
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...
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@...> ...
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)...
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...
... 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...
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. ...
Hi In file atlcrack.h, 'OnSysCommand' prototype is shown as // void OnSysCommand(UINT nID, LPARAM lParam) but it should be // void OnSysCommand(UINT nID,...
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 ? ...
... 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...
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...
... 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...
... 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...
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...
... 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...
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...