Tagged Questions
The ccombobox tag has no wiki summary.
3
votes
1answer
97 views
CComboBox::Dir function does not list directory if Archive attribute is unset and Index attribute is set
I am using CComboBox::Dir(DDL_READWRITE, path) to populate the contents of a combobox. Everything is fine, but when I reset the Archive flag and set the Index flag, the Dir() returns no files. I am ...
2
votes
2answers
546 views
Catching when user selects an item from a CComboBox
This is as basic as it gets.
I want to catch when the user selects an item from a CComboBox (actually, a subclass of CComboBox).
Tried lots of combinations of OnCblSelChange, OnCommand. Guess I ...
1
vote
1answer
607 views
Intercepting messages from a child of a child with MFC
I have a CListCtrl class and at the moment when a user selects one of the sub items I am displaying a CComboBox over the subitem which the user can then make a selection from.
However I have a ...
1
vote
3answers
783 views
MS Access 2000 - VBA Value from a combo/text box into a file path string
Hey guys. I have a form that I intend to allow users to browse powerpoint presentations through, because there are a lot of different briefs for metrics, which is what I use this database for. So, I ...
1
vote
1answer
514 views
How to prevent the mouse cursor from being hidden after calling CComboBox::ShowDropDown?
In my MFC application, when I call CComboBox::ShowDropDown(), the mouse cursor is hidden until interaction with the combo box completes (when the combo box loses focus.) It doesn't reappear when the ...
0
votes
1answer
143 views
How to get WPF combobox display text using UIAutomation?
I just started using UIAutomation for some testing. I got the most stuff working except this seemly simple one.
I want to verify the localized text displayed in a combobox, but I couldn't figure out ...
0
votes
1answer
73 views
MFC CComboBoxEx icon update issue
I am using the CComboBoxEx control in MFC to implement an address box for a browser application which shows the address and the related site icon.
According this link: ...
0
votes
0answers
96 views
How to disable right click menu in CCombo in SWT?
I have a Ccombo in my table, how do i disable the copy/paste menu on right click ?
I have tried
combo_clicked.setMenu(menu) where menu is a new menu
combo_clicked.addMenuDetectListener(new ...
0
votes
1answer
92 views
How do I change the font of a specific item in a CListBox/CComboBox
I have a CComboBox-derived class with a subclassed CListBox. I would like to make the first two item in the CListBox bold. How can I accomplish this?
0
votes
1answer
757 views
MFC CComboBox OnKillFocus/ShowDropDown after SetCurSel on Windows 7
As you may know a CComboBox (DropDownList style) only selects properly by typing if you don't let it autosort it's content. Here an example of what i mean:
You type A and then B. If it is not on ...
0
votes
1answer
282 views
In MFC, how do I tell if a CComboBox is enabled?
I see that you can enable/disable using the EnableWindow method, but how do I get it's current state?
0
votes
1answer
547 views
Catching Enter Keypress from a CComboBox
Once a user types something in to my CComboBox (within a CDialog subclass) and presses Enter, I would like to add what they've written to the list of options, and do some other handling. How do you do ...
0
votes
1answer
522 views
CComboBox automatically selects text after call to MoveWindow
I'm currently experiencing a very strange problem with a CComboBox used within a CFormView.
After adding strings to the combobox (created with WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | ...
0
votes
1answer
195 views