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...
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
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
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
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
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
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
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
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
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
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? ...