Hi, As usual WTL lacks of documentation for newbies like me ;-), and i found it quite hard to undersdtand the ReBar and ToolBar and CommandBar. Any how i...
... I think it's worth mentioning the "override" keyword, supported since Visual C++ 2005. This extremely useful keyword specifies that a member must override...
I am a starter of WTL. Do I have to know ATL well before learning WTL since it have many relationships with ATL? Where can I found the latest SDK? I have "WTL...
comphilip
comphilip@...
Jan 5, 2009 8:49 pm
15759
A few things concern me looking at your code briefly. One question is: who is responsible for destroying the edit when editing is done? Is it the parent or...
And this is a good recommendation, a simple solution. ~Mike _____ From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] On Behalf Of Dick Dievendorff Sent:...
Hi All, While using upDown Control how can i identify whether user is pressing up key or down key? I have registered NOTIFY handler for UDN_DELTAPOS message. I...
... since it have many relationships with ATL? ... yes, you need to know some parts of ATL, at minimum those that deal with windows. the best way to learn WTL...
I agree, since there are few docs you have to code to learn. I don't think ATL should be an issue, I seldom give it a look. I also suggest Bjarke Viksoe's...
Thank you and I will use that keyword. VC2005 does however give a warning about non-standard extension. ... since Visual C++ 2005. This extremely useful...
... Yes, I had sort of assumed that "override" would be part of C++0x, given how obviously useful it is, and how it has already been suggested as an extension...
... WTL since it have many relationships with ATL? ... I can recommend the Chapter 10 "Windowing" from "ATL internals second edition working with ATL...
here are lots of WTL starter materials.  1. 《WTL makes UI programming a joy》 2.  WTL source code, i think ,that's the best one. as long as you have a...
Thank you very much for your review and input. I really appreciate it and will use it. It is great to see all the help provided in this forum for those...
in MFC, it's common to see code like this: //clsss CAEdit : public CEdit void CAEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { //before, may change the...
An important distinction between WTL and MFC is that in WTL window subclasses for controls are separated into "client classes" and "implementation classes". ...
... There is no need. You can use cracked handlers and call GetCurrentMessage to retrieve the original wParam and lParam values. -- Jim Barry, Microsoft MVP...
... a ... GetCurrentMessage to retrieve the original wParam and lParam values. ... Good point ;), and thanks for all of the helpful info like this that you...
Hi folks just get info on MSFT release of ribbon UI API http://msdn.microsoft.com/en-us/library/dd371191(VS.85).aspx AFAIR, there were some discussions on WTL...
I have a number of messages that I need to send to my CMainFrame, which is the "main" application window. In MFC you could find this with AfxGetMainWnd() or...
We had some ribbon work in progress, but no defined plans for now. Since WTL is an open source project, we do welcome people who would like to contribute work...
Hi Dick, GetTopLevelParent( ).SendMessage(WM_XXX, wParam, lParam); cheers, AR ... From: Dick Dievendorff To: wtl@yahoogroups.com Sent: Thursday, January 15,...
Hi Dick, I was going to also suggest what Alain said; however, having struggled with this same dilemma myself, despite having been taught that global variable...
... great ... Thanks Jim. One funny thing is that I think the question of calling DefWindowProc before or after my own message processing was one of the first...
Thanks, Mike. Since my hierarchy isn't deep I'm going with the GetTopLevelParent() approach. I do have some mixin classes that are used by classes that aren't...