... If you're using the control wrappers, the first thing you must do in your OnInitDialog call is to attach them to the actual windows. Something like: ...
... I shouldn't worry about it too much. My bet is that within the next year, they're going to see that (like GDI+), WinFX will have major performance issues....
Hi, I have a requirement where I need to create child windows dynamically and these child windows need to have there own menus. I am trying to implement the...
... Hi Mahmud, If you haven't done so already, I would suggest that you create the CCommandBarCtrl on the heap and then delete it from memory before creating...
Roger, thanks for that dude. Seems to have made a difference, still testing, will update you on how things go. Yeah, I am interested in your owner drawn...
I've created a custom dialog class derived from CAxDialogImpl to load a resource edited dialog as modeless dialog that is attached to an ATL control. This...
7297
wtl@yahoogroups.com
Nov 5, 2003 9:57 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the wtl group. File : /cmdbartest.zip ...
Roger, tried your suggestion of creating CCommandBarCtrl on the heap but now app fails with Priviledge instruction exception. I've started playing around with...
Hi folks, I have a check box with text to the side, it lives on a composite control. When I test the control in DevStudio the button text is black on a grey ...
... heap but now app fails with Priviledge instruction exception. ... Hi Mahmud, The reason I previously suggested that you create the CCommandBarCtrl object...
I'm sure this has been done to death but various searches on the archive (and others) doesn't show a solution, so here goes... Like everyone else I'd like to...
... a ... Hi Steve, After LVN_BEGINLABELEDIT returns, the listview will automatically call SetWindowPos to position the edit control over Column 0's label....
I'm currently writing a ActiveX control with WTL. Everything has been going great. But I would like to add a RunDLL32 interface so that I can run the ActiveX...
I'm not sure what the 'official' way of doing that is, but you could write a small Module wrapper class that just agregates both of them, but only constructing...
I looked at <atlapp.h> ... CServerAppModule directly inherits from CAppModule. The most notable differences are the Init and Term methods. Perhaps you could...
... The problem with that -- just thinking out loud here -- is that the bulk of the ATL/WTL code expects "extern CComModule _Module;" *scratches head* No wait...
extern CMyComModule _Module; Assuming CMyComModule inherits from CComModule you should be fine. Or am I missing something obvious ? then something like (Psuedo...
... That would work but you're going to need to implement a whole bunch of these random CComModule methods ... The class hierarchy is CComModule -> CAppModule...
I don't see how the dynamic reference is going to work. CComModule &_Module; (references must be initialized) I tryed setting it to NULL but that won't fly. I...
What I want is something like Word does. I want a standalone exe but I would also like a ActiveX object that can be embedded. Should I be creating a ATL com...
... // I just tried this, it compiles fine ... CComModule _Module; CComModule & _OtherModule = *(CComModule *)NULL; ... Actually you don't. Just declare one...
... activation. ... That is my problem, I want to be inprocess of IE so that I can implement the interfaces for toolbars and manipulate the DOM of the current...