Hi, there is no event triggered, the combobox remains visible. Can you explain more in detail what exactly you need to do with this event? There is an additional event triggered OnAfterCloseInplaceEditor when the combobox exits and posts the value to the cell.
You can indeed use the event if you want to let the user know he made a selection, but as long as the editor remains active, the value will not be posted to the cell. It’s not possible to automatically close the inplace editor when a value is selected, you will get an access violation because there are still things happening after the OnChange event inside TComboBox that prevents from doing this, unless you start a close timer from the OnChange event, and then call TMSFNCDataGrid1.StopEditing to accept the value the user selected.