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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 16596 - 16626 of 16626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
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...
16604 Igor Tandetnik
itandetnik Send Email
Aug 9, 2012
3:10 am
... The return value of MsgWaitForMultipleObjects tells you which handle, or the window message, satisfied the wait. ... Any reason the thread can't just post...
16605 shuaixh@...
shuaixh Send Email
Aug 15, 2012
6:04 am
I understand that WinHttp supports an option (WINHTTP_OPTION_MAX_CONNS_PER_SERVER) that enables the caller to limit how many local connections are used per...
16606 timza1221 Send Email Aug 15, 2012
1:36 pm
I have an edit control in a dialog (of type CDialogImpl<CCWEditDlg>) At the dialog OnInitDialog() the control is not a window. (has no handle I assume) How can...
16607 Igor Tandetnik
itandetnik Send Email
Aug 15, 2012
1:48 pm
... What makes you believe that? By the time OnInitDialog is called, all controls specified in the dialog resource should already have been created. -- Igor...
16608 timza1221 Send Email Aug 15, 2012
3:07 pm
... I have a variable for the edit control and the variable is connected to the dialog: BEGIN_DDX_MAP(CCWEditDlg) DDX_CONTROL(IDC_EDIT1, m_wndEdit) ...
16609 Igor Tandetnik
itandetnik Send Email
Aug 15, 2012
3:31 pm
... You need to call DoDataExchange(FALSE), somewhere near the top of OnInitDialog. That's what walks the DDX map and acts on its entries. -- Igor Tandetnik...
16610 tommy_h_tam Send Email Aug 20, 2012
3:15 pm
My program is a chromeless window and I want to move the window when user drag any part of my dialog. Once WM_SYSCOMMAND is used, all subsequent mouse events...
16611 Igor Tandetnik
itandetnik Send Email
Aug 20, 2012
4:26 pm
... SC_MOVE initiates a modal message loop that processes mouse messages and translates them into window movement. That's why those mouse messages don't reach...
16612 tommy_h_tam Send Email Aug 21, 2012
4:51 pm
It is because I am hosting a web browser, and the web browser has an HTML element that expect onMouseUp event, and somehow onMouse up is not fired once I use...
16613 Igor Tandetnik
itandetnik Send Email
Aug 21, 2012
5:54 pm
... If you want to have mouse-down initiate a drag of the window, I'd say you should intercept it and prevent it from reaching that HTML element. If the...
16614 timza1221 Send Email Aug 29, 2012
4:06 pm
Thanks Igor! do you recommend the Resourceless Dialog Toolkit? ...
16615 timza1221 Send Email Sep 4, 2012
12:51 pm
I think I have to answer my own question. NO. It's crashing and needs a much better design. The support from Microsoft seems to be there. Todd. Maybe for...
16616 umeca74 Send Email Sep 14, 2012
10:33 am
Does anyone know of a hotkey control subclass/replacement that improves the system msctls_hotkey32? I want to enable handling of the various keys the default...
16617 shuaixh@...
shuaixh Send Email
Nov 15, 2012
3:51 am
I Create a ListView Control With A few Columns, i want the first column to be  a "fixed" column, when i pull the horizontal scrollbar, the other columns...
16618 Mojtaba Fathi
modjtabaf Send Email
Nov 25, 2012
4:59 pm
Hi Maybe you can use two ListView controls besides each other. The first one to include the fixed column and the other one for scrolling columns. Moji ... ...
16619 shuaixh@...
shuaixh Send Email
Jan 6, 2013
10:38 am
i want to add tooltip to a WTL listview control,  activate the tooltip when the mouse hovers over a cell where the entire text is only partially displayed. ...
16620 Michael Stephenson
domehead100 Send Email
Jan 6, 2013
7:09 pm
Just set the LVS_EX_LABELTIP extended style on the listview, and make sure your _WIN32_WINNT define is at least 0x0500 in your stdafx.h. Documentation? ...
16621 shuaixh@...
shuaixh Send Email
Jan 8, 2013
8:32 am
normal listview (report mode) did show tooltip whenĀ  LVS_EX_LABELTIPis set. but my listview control is in virtual list mode, and is a customdrawn list, i do...
16622 Jim Barry
jim_barry.geo Send Email
Feb 11, 2013
7:19 pm
Hi folks, As per bugs 696790<http://connect.microsoft.com/VisualStudio/feedback/details/696790/atl-missing-general-dll-version-helpers&gt; and...
16623 Jim Barry
jim_barry.geo Send Email
Feb 12, 2013
11:42 am
Apologies for the HTML post - I forgot that Yahoo doesn't allow that. Anyway, I just grabbed the latest from SVN and discovered that Nenad already worked...
16625 shuaixh Send Email Apr 27, 2013
9:20 am
"hello, i embed a "test.html&quot; file in VC project as a HTML resource . test.html file has many res files in its HTML tags  when i navigate to the url...
16626 Karl Edwall
edwallk Send Email
Apr 27, 2013
11:21 am
You need to embedd the images as well as a resources as well and access in the same way, e.g. the URL to the image would be "res://myapp.exe/2_PNG" if you gave...
Messages 16596 - 16626 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