I seen last fwh812 changes about ESC key in TComboBox and I guess the combobox KeyDown method has to be:
METHOD KeyDown( nKey, nFlags ) CLASS TComboBox
if nKey == VK_ESCAPE .and. ::IsOpen()
::Close()
return 1
endif
return Super:KeyDown( nKey, nFlags )
Regards,
Roberto Parisi