Skip to search.
wtl · WTL support list

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 52 - 81 of 16586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
52 Ray Tayek
rtayek@... Send Email
Jun 3, 2000
11:03 am
it seems CSimpleArray<T>::Add(T &t) will *copy* t when it makes the wrapper. this is good for memory leaks and sucking up lots of your time. greping through...
53 Jon Bates
Jon.B@... Send Email
Jun 5, 2000
8:04 am
Does anyone have a sample using this class. I seem to have a problem in that when I subclass the bitmap button I no longer get BN_CLICKED message in my parent...
54 Jon Bates
Jon.B@... Send Email
Jun 8, 2000
11:56 am
Does anyone know how to obtain the headers and libs needed for WS_EX_LAYERED and SetLayeredWindowsAttributes() ? Thanks <-Jon-> http://www.chaos1.demon.co.uk/ ...
55 Jay Thiagarajan
jay_t@... Send Email
Jun 8, 2000
7:53 pm
Hi I generated an SDI applications using ATL/WTL App wizard. It seems that the access keys does not work whereas the shortcut keys work. For eg. If I press...
56 Edwall, Karl
edwallk@... Send Email
Jun 8, 2000
10:06 pm
Try downloading the Platform SDK from Microsoft. It's available from their MSDN site. Note also that you need to define _WIN32_WINNT to be greater or equal to...
57 Yuri Kirilenko
kiri@... Send Email
Jun 9, 2000
11:25 am
Hi Jay See the first message in this groups Regards, Yuri...
58 Jay Thiagarajan
jay_t@... Send Email
Jun 9, 2000
2:47 pm
Yuri Thanks. I found the problem. It is in the file AtlCtrlw.h. The string comparision function for mnemonics (Access keys) compares the pointers instead of...
59 Yuri Kirilenko
kiri@... Send Email
Jun 9, 2000
3:37 pm
Yet earlier this bug has looked by Jeroen Thur <jeroent@...> Here is his message: <[wtl] Bug: Selecting MenuItems via keyboard> ...
60 Ray Tayek
rtayek@... Send Email
Jun 9, 2000
5:34 pm
hi, trying to destroy a view and create a new view in a wtl sdi app. destroying works fine, the view goes away. but the only way i cpuld get the new view to...
61 Nenad Stefanovic
nenads@... Send Email
Jun 9, 2000
8:27 pm
Hi Yuri, Yes, both postings are correct. This is a bug in atlctrlw.h and it will be fixed for the next release. In the meantime, you'll have to change the ...
62 Nenad Stefanovic
nenads@... Send Email
Jun 9, 2000
8:31 pm
Hi Ray, I think the best way is to call CMainFrame::UpdateLayout() after assigning your view's HWND to m_hWndClient. It will do all the resizing for you and ...
63 Nenad Stefanovic
nenads@... Send Email
Jun 9, 2000
8:42 pm
Actually, the question about the IE4 was for Jay. Thanks, Nenad ... From: Nenad Stefanovic [mailto:nenads@...] Sent: Friday, June 09, 2000 1:26 PM ...
64 Nenad Stefanovic
nenads@... Send Email
Jun 9, 2000
8:47 pm
Hi Ray, Yes, CSimpleArray makes a copy if you use it for objects. It needs to manage memory allocation for objects stores in it. If you use pointers, that you ...
65 Nenad Stefanovic
nenads@... Send Email
Jun 9, 2000
8:49 pm
Hi Jon, I don't quite understand what happens here, what do you mean when you say that you subclass the bitmap button? This problem can happen only if parent ...
66 Yuri Kirilenko
kiri@... Send Email
Jun 10, 2000
8:19 am
Hi Nenad, Thanks for your reply. Indeed, I have IE4 on my machine (NT4 + SP4). What relation has the IE version to CommandBar behavior ? Regards, Yuri...
67 Nenad Stefanovic
nenads@... Send Email
Jun 10, 2000
8:24 am
Hi Yuri, It seems that the toolbar behavior related to hot-keys (mnemonics) is different in IE4 and IE5, so different code path is executed in the command bar...
68 Yuri Kirilenko
kiri@... Send Email
Jun 10, 2000
9:06 am
Nenad, Thanks you for clarification about IE version. Regards, Yuri...
69 Jay Thiagarajan
jay_t@... Send Email
Jun 12, 2000
1:44 pm
Hi Nenad I am using NT4 with IE 5.00.2919.6307 Thanks Jay ... will be ... the ... example, ... strings ... strings ... strings ... solution could ... should ...
70 Jay Thiagarajan
jay_t@... Send Email
Jun 12, 2000
1:53 pm
Hi Nenad I forgot to add one more detail. I compiled the project with _WIN32_IE defined as 0x400. When I try to define it as 0x500, I am getting errors...
71 Nenad Stefanovic
nenads@... Send Email
Jun 12, 2000
9:13 pm
Hi Jay, Yes, you need new SDK headers. Those that come with VC6 don't have everything needed. New ones come with the Platform SDK. Thanks, Nenad ... From: Jay...
72 Nenad Stefanovic
nenads@... Send Email
Jun 12, 2000
9:24 pm
Hi Jay, I would expect that you see only CharLower problem with that configuration (which means that you can open command bar menus with Alt+letter, but can't ...
73 Nenad Stefanovic
nenads@... Send Email
Jun 12, 2000
9:56 pm
Hello, Several people reported problems with the command bar and keyboard shortcuts. Digging into code revealed that there were two problems: 1. Incorrect...
74 Jay Thiagarajan
jay_t@... Send Email
Jun 13, 2000
2:01 pm
Hi Nenad Yes, you are correct. I am able to open command bar menus with Alt+letter, but can't select menu items. Thanks Jay ... configuration ... but can't ......
75 Nenad Stefanovic
nenads@... Send Email
Jun 13, 2000
6:06 pm
Hi Jay, Thanks. My previous post to this group describes both problems and fixes for them. Cheers, Nenad ... From: Jay Thiagarajan [mailto:jay_t@...] ...
76 Luke T. Gatchell
wtl@... Send Email
Jun 15, 2000
1:28 am
Ok, this one has got me for quite awhile. I am attempting to create the BmpView app myself while reading through the WTLPart2.doc from the DevelopMentor guys....
77 Ray Tayek
rtayek@... Send Email
Jun 15, 2000
6:10 am
hi, i have an sdi app with child windows (that have child windows). the mainframe gets the size message, but does not inform the view of that fact (as near as...
78 Yuri Kirilenko
kiri@... Send Email
Jun 15, 2000
9:11 am
Hi Ray, Here is a example of child control resizing. ( IDC_EDIT is identifier of edit control in the dialog child window.) // MainFrm.h : interface of the...
79 Luke T. Gatchell
wtl@... Send Email
Jun 15, 2000
3:13 pm
My fault. I'm not sure how this happened, but my comment regarding the inheritance from CPrintJobInfo is completely wrong! I re-extracted the code this morning...
80 Yuri Kirilenko
kiri@... Send Email
Jun 15, 2000
4:13 pm
Hi Luke, About the semicolons in the message map. In the "atlwin.h" is defined: #define COMMAND_ID_HANDLER(id, func) \ if(uMsg == WM_COMMAND && id ==...
81 Ray Tayek
rtayek@... Send Email
Jun 16, 2000
1:47 am
At 12:08 PM 6/15/2000 +0100, you wrote: i was just using child windows (frames with children, no dialogs) and ended up with: void CWView::size() // called from...
Messages 52 - 81 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