What VBA event allows to capture click value of ActiveX combobox?
问题 After choosing item from ActiveX combobox by mouse click I would like the combobox to be closed and the item to be chosen. Here is an example. I have tried TempCombo_Click event but it is fired AFTER the TempCombo_Change event. And when I select item by click, my search string passed to TempCombo_Change event is empty. So I need something to preserve item selection in TempCombo_Change event. I use modification of VBA code taken from Autocomplete suggestion in Excel data validation list again