Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

wtl · WTL support list

The Yahoo! Groups Product Blog

Check it out!

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

Advanced
Messages Help
Messages 16574 - 16603 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
16574 Peter Kvitek
kvitekp Send Email
Feb 3, 2012
10:46 pm
Our WTL based app has millions of installations and roughly twice a year one or the other antivirus package starts flagging it as malware after virus ...
16575 Nenad Stefanović
nenad_stefan... Send Email
Feb 3, 2012
11:34 pm
Hi Peter, Thanks for sharing this info. Based on it, we have to conclude that there is nothing really wrong with the _ATL_MIN_CRT code. And that is very good ...
16576 Konstantin Mironovich
const_at_ixbt Send Email
Feb 15, 2012
7:37 pm
Hello, I wonder but I cannot find the reason. The code is: CShellFileSaveDialog fd; if (fd.DoModal(GetParent()) == IDOK) { CStringW s; fd.GetFilePath(s); } ...
16577 Konstantin Mironovich
const_at_ixbt Send Email
Feb 17, 2012
12:49 am
probably something wrong with my App mainloop. fd.DoModal(::GetDesktopWindow()) works fine. -km ... From: "Konstantin Mironovich" <const@...> To:...
16578 Nenad Stefanović
nenad_stefan... Send Email
Feb 17, 2012
1:00 am
What is GetParent() returning in your code? Cheers, Nenad 2012/2/16 Konstantin Mironovich <const@...> ... [Non-text portions of this message have been...
16579 Konstantin Mironovich
const_at_ixbt Send Email
Feb 17, 2012
6:45 am
guess the parent is valid. furthermore CFileDialog works pretty good in this App. also both work in another WTL-based program. I suspect these Vista COM-based...
16580 Nenad Stefanović
nenad_stefan... Send Email
Feb 17, 2012
8:24 am
Parent needs to be a top level window, not just valid. Or, it could be Vista - have you tried it on Win7? Cheers, Nenad ... [Non-text portions of this message...
16581 Konstantin Mironovich
const_at_ixbt Send Email
Feb 17, 2012
5:49 pm
the default parent is ::GetActiveWindow() for both CFileDialog::DoModal() and CShellFileSaveDialog::DoModal() and only the first works in my case. Win7 will be...
16582 Timo Kunze
timosoft2001 Send Email
Feb 17, 2012
8:39 pm
Hi, could it be that all that is missing is a call to CoInitialize? Regards Timo -- www.TimoSoft-Software.de - Unicode controls for VB6 "Those who sacrifice...
16583 Konstantin Mironovich
const_at_ixbt Send Email
Feb 18, 2012
2:14 pm
Thank for the idea, I don't think it's necessary. Nevertheless I've tried both cases. Anyway this code works with S_OK : CComPtr<IFileSaveDialog> pfd =...
16584 Nenad Stefanović
nenad_stefan... Send Email
Mar 25, 2012
11:08 pm
Hello everybody, New build of WTL 8.1.12085 is on SourceForge.net. It adds support for VC++ 11 as well as some bug fixes. Cheers, Nenad [Non-text portions of...
16585 yarp
yarp2002 Send Email
Mar 29, 2012
7:56 pm
Great ! Thanks Nenad,...
16586 Philippe
dev_etech Send Email
Apr 18, 2012
6:56 pm
Thnak you. All the best to the WTL team !...
16587 Philippe
dev_etech Send Email
Jun 2, 2012
4:28 pm
Hi Nenad, I have controls derived from 'CScrollWindowImpl<MyControl, CFSBWindow>' and particularly a DataGrid. I noticed that when I turned my mouse's wheel...
16588 Nenad Stefanović
nenad_stefan... Send Email
Jun 4, 2012
6:26 am
Hi Philippe, Thank you for pointing this out. Your solution is what should be there, so I will add it to the WTL code. Thanks, Nenad ... [Non-text portions of...
16589 Richard
dj_deipotent Send Email
Jun 21, 2012
1:35 am
Just checked the latest WTL 8.1 release and this change never got committed. As there were no objections, can this be committed ? Best Regards, Richard B....
16590 Richard
dj_deipotent Send Email
Jun 22, 2012
12:02 am
I've only just noticed that Wizard based WTL frame apps have a return code of 1 when the X button is clicked by default, and Wizard based WTL dialog apps have...
16591 Jim Barry
jim_barry.geo Send Email
Jun 22, 2012
12:19 am
... OK, here you go... https://sourceforge.net/tracker/?func=detail&aid=3537028&group_id=109071&atid=652372 ...
16592 Richard
dj_deipotent Send Email
Jun 22, 2012
12:28 am
Thanks Jim. In future I'll report it in the bug tracker, and may just sign up to the project as a developer. :) Best Regards, Richard B....
16593 maybnxtseasn Send Email Jun 22, 2012
1:49 pm
http://social.msdn.microsoft.com/Forums/en-US/vcmfcatl/thread/bc715647-7f9b-4404-81fb-89c11bbd7b30 above is the link to the original discussion along with the...
16594 Michael Stephenson
domehead100 Send Email
Jun 22, 2012
3:30 pm
I think you need a PreTranslateMessage that returns ::IsDialogMessage for the child dialog. This is needed for modeless dialogs to drive their message...
16595 Richard
dj_deipotent Send Email
Jul 2, 2012
7:20 pm
I've noticed that a right-click on a checkbox in a CCheckListViewCtrl results in two WM_CONTEXTMENU (also NM_RCLICK) messages being sent - one for the mouse...
16596 Richard
dj_deipotent Send Email
Jul 2, 2012
7:35 pm
My logic for not display a context menu is a bit simplistic, as it doesn't work for a double right-click on a checkbox - the second mouse-down does not...
16597 tody.lu Send Email Jul 5, 2012
8:49 pm
I save one integer value in Column of ListCtrl via "SetItem"; But I can't get the value via "GetItem" if the application is complied using "Release"...
16598 Anna-Jayne Metcalfe
jalapenokitten Send Email
Jul 5, 2012
9:12 pm
Hi Tody, ... using "Release" configuration. ... I can't see anything specific to build configurations in your code (the usual culprits are uninitialized...
16599 false
shuaixh Send Email
Jul 31, 2012
3:44 am
CMenu menu; menu.CreatePopupMenu(); menu.AppendMenu(MFT_STRING|DFCS_CHECKED|DFCS_BUTTONCHECK, 1, "name1"); menu.AppendMenu(MFT_STRING, 2, "name2");...
16600 Konstantin Mironovich
const_at_ixbt Send Email
Jul 31, 2012
4:57 am
menu.AppendMenu(MF_STRING, COMMAND, "string"); menu.CheckMenuItem(COMMAND, MF_BYCOMMAND|MF_CHECKED); -km ... From: false To: wtl@yahoogroups.com Sent: Tuesday,...
16601 false
shuaixh Send Email
Aug 8, 2012
11:23 am
i attach a tooltip to a listview, and each time the cursor move to a listview item , the tooltip will show some corespoding infomation. the tooltip can really...
16602 Karl Edwall
edwallk Send Email
Aug 9, 2012
12:51 am
Have you tried setting the delay time, http://msdn.microsoft.com/en-US/library/t7b206dh(v=vs.80) for TTDT_AUTOPOP and see if that works better? Regards, Karl...
16603 Richard
dj_deipotent Send Email
Aug 9, 2012
3:03 am
I want to be able to wait on events in the main event loop as well as normal messages. I understand I can use MsgWaitForMultipleObjectsEx() as shown in the...
Messages 16574 - 16603 of 16626   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