Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 7289 - 7318 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7289 Simon Cooke
spectecjr Offline Send Email
Nov 2, 2003
3:17 am
... 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: ...
7290 Simon Cooke
spectecjr Offline Send Email
Nov 2, 2003
3:22 am
... 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....
7291 Mahmudul Hoque
hoquem Offline Send Email
Nov 4, 2003
4:28 pm
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...
7292 Roger Headrick
lilsroro Offline Send Email
Nov 4, 2003
5:46 pm
... 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...
7293 Mahmudul Hoque
hoquem Offline Send Email
Nov 4, 2003
6:18 pm
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...
7294 John D. Wilkinson, III
johndiiix Offline Send Email
Nov 5, 2003
1:39 am
If you think it's (more or less) readable, please consider posting your mix-in class to the group files area [1]. I'm interested. Thanks, John [1]...
7295 Roger Headrick
lilsroro Offline Send Email
Nov 5, 2003
3:36 am
... your ... Hi John, I've uploaded a demo project - ODMenuDemo.zip. It was done with VS7/ATL7/WTL7. It includes 2 mutually exclusive classes for...
7296 amos_t_smith Offline Send Email Nov 5, 2003
4:25 am
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 Send Email 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 ...
7298 Mahmudul Hoque
hoquem Offline Send Email
Nov 5, 2003
10:32 am
Roger, tried your suggestion of creating CCommandBarCtrl on the heap but now app fails with Priviledge instruction exception. I've started playing around with...
7299 Mike Frith
mwfrith Offline Send Email
Nov 6, 2003
5:07 pm
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 ...
7300 Igor Tandetnik
itandetnik Offline Send Email
Nov 6, 2003
5:15 pm
"Mike Frith" <mfrith@...> wrote in message news:83B4938C35075E4C82C357A4FF267C8305D7DC41@.... ... control. ... grey ... rectangle ... ...
7301 Mike Frith
mwfrith Offline Send Email
Nov 6, 2003
5:30 pm
I do handle that but we did modify it to use COLOR_BTNFACE. I'll have to play with that and see what's up. thanks Igor Mike ... ...
7302 Mike Frith
mwfrith Offline Send Email
Nov 6, 2003
5:34 pm
Not handling that message gives me the colour I want, now, to remember why I was using that colour. ... http://docs.yahoo.com/info/terms/...
7303 Roger Headrick
lilsroro Offline Send Email
Nov 6, 2003
9:01 pm
... heap but now app fails with Priviledge instruction exception. ... Hi Mahmud, The reason I previously suggested that you create the CCommandBarCtrl object...
7304 Steve Roberts
sjrfrommerant Offline Send Email
Nov 6, 2003
10:33 pm
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...
7305 Roger Headrick
lilsroro Offline Send Email
Nov 7, 2003
2:13 am
... a ... Hi Steve, After LVN_BEGINLABELEDIT returns, the listview will automatically call SetWindowPos to position the edit control over Column 0's label....
7306 daveydave1234 Offline Send Email Nov 7, 2003
8:53 am
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...
7307 Gareth Lewin
garethneallewin Offline Send Email
Nov 7, 2003
9:39 am
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...
7308 Rick Parrish
ultra_wide_band Offline Send Email
Nov 7, 2003
9:47 am
I looked at <atlapp.h> ... CServerAppModule directly inherits from CAppModule. The most notable differences are the Init and Term methods. Perhaps you could...
7309 Rick Parrish
ultra_wide_band Offline Send Email
Nov 7, 2003
9:55 am
... 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...
7310 Gareth Lewin
garethneallewin Offline Send Email
Nov 7, 2003
10:00 am
extern CMyComModule _Module; Assuming CMyComModule inherits from CComModule you should be fine. Or am I missing something obvious ? then something like (Psuedo...
7311 Rick Parrish
ultra_wide_band Offline Send Email
Nov 7, 2003
10:38 am
... 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...
7312 Gareth Lewin
garethneallewin Offline Send Email
Nov 7, 2003
10:55 am
That would work too, but Agregation has it's strong points. ... From: Rick Parrish [mailto:rfmobile@...] Sent: 07 November 2003 10:38 To:...
7313 daveydave1234 Offline Send Email Nov 7, 2003
4:16 pm
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...
7314 daveydave1234 Offline Send Email Nov 7, 2003
4:20 pm
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...
7315 Igor Tandetnik
itandetnik Offline Send Email
Nov 7, 2003
4:30 pm
"daveydave1234" <dhorner@...> wrote in message news:boggo2+5k9d@.... ... You want an OLE Server that supports embedding and in-place...
7316 Rick Parrish
ultra_wide_band Offline Send Email
Nov 7, 2003
4:36 pm
... // I just tried this, it compiles fine ... CComModule _Module; CComModule & _OtherModule = *(CComModule *)NULL; ... Actually you don't. Just declare one...
7317 Steve Roberts
sjrfrommerant Offline Send Email
Nov 7, 2003
4:36 pm
... Many thanks!...
7318 daveydave1234 Offline Send Email Nov 7, 2003
4:59 pm
... 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...
Messages 7289 - 7318 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help