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
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
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...
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
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
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
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
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
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
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
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
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
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
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
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
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
Aug 29, 2012 4:06 pm
Thanks Igor! do you recommend the Resourceless Dialog Toolkit? ...
16615
timza1221
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
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
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
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
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
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
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
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> and...
16623
Jim Barry
jim_barry.geo
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
Apr 27, 2013 9:20 am
"helloļ¼ i embed a "test.html" 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
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...