Hi All, We are currently investigating the use of Sockets with WTL. MFC has provided many nice classes for sockets and data serialization, etc, however, I am...
our app based on WTL going to be completed...... thanks for everyone , for whom that created WTL..... now it is 2007, happy new year! regards lyshsd [Non-text...
Hi, I created a ATL/WTL project using AppWizard, chose "SDI Application" and "Generate .CPP files" options. On running BoundsChecker on it, I found few...
Hi, I created a ATL/WTL project using AppWizard, chose "SDI Application" and "Generate .CPP files" options. On running BoundsChecker on it, I found few...
Hi Everyone, I'm getting confused about how I should approach the following situation: I'm trying to write an app in WTL, I have a derivation of CListCtrl in...
Hi! Greetings! i would like to create a control inside SDI Application which looks rectangle has N number of squares can be created inside the rectangle.which...
... I'm not sure why it matters to BC whether the code is in .cpp files or not. Anyway, the icons don't really need cleaning up because there is no intention...
... Yes, sometimes I find this stuff pretty confusing too. Multiple inheritance is definitely not the way to go. I think you just want something like this: ...
... Yes, sometimes I find this stuff pretty confusing too. Multiple inheritance is definitely not the way to go. I think you just want something like this: ...
... I'm not sure why it matters to BC whether the code is in .cpp files or not. Anyway, the icons don't really need cleaning up because there is no intention...
Hi! Greetings! i would like to create a control inside SDI Application which looks rectangle has N number of squares can be created inside the rectangle.which...
Hi all, Are there a similar mechanism as MFC ON_CONTROL_REFLECT message handling in WTL, or do I have to handle WM_COMMAND messages for notification messages ...
Hi Everyone, If I'm subclassing a control such as CEdit in MFC and I want to let the base class get a crack at the message and then perform further processing,...
Thank you Sir! Good point about EN_CHANGE, I'll definitely have to do that. I do already have a rather complex OnPaste handler that does validation and then...
Hi all, Of course WTL is more basic than MFC in many aspects, but then, on the other hand, it can do magic things. One experiment I did yesterday was the...
... See REFLECT_NOTIFICATIONS, REFLECTED_COMMAND_HANDLER, REFLECTED_NOTIFY_HANDLER et al. -- With best wishes, Igor Tandetnik With sufficient thrust, pigs fly...
Thanks yet again. CString was one of the things that has been confusing me. After I included atlstr.h in my stdafx.h, I got a zillion compiler errors about...
Thanks Jim. That makes sense (I think, still a little fuzzy, but experimenting should help clear things up). I will try your suggested approach, see how it...
Hi all, One general question about making WTL wrapper classes for some common dialog controls: Say I want to make a wrapper class, CMyEdit, for the CEdit...
... You have just participated in the thread where precisely this question has been asked, and answered. The one with the subject of "How to call base class...
I'm writing a pure simple windows program using WTL. I have nothing to do with COM or OLE, but by using WTL, my EXE relies on OLE32.dll and Oleaut32.dll. One...
... ATL has dependencies on ole32.dll and oleaut32.dll that are hard to eliminate. It really doesn't matter though, because these DLLs are present in all...
Hi Igor, Sorry, I didn't read my mail properly the last two days. My fault. 10-0 to you. So I will do LRESULT lResult = DefWindowProc(uMsg, wParam, lParam); //...
I am curious, in the original post Ingar request how to call the base class *before* doing our work : CMyEdit::OnChar (...) { CEdit::OnChar(...) // do my...