Problem TsComboBox & TsComboBoxEx Click Root › Technical support › Troubleshooting This topic has 2 replies, 2 voices, and was last updated 8 years, 3 months ago by Gregory.P. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts December 23, 2016 at 8:09 am #55957 SupportKeymaster Thank you for the demo. This is a standard behaviour, OnClick event is not fired in standard TCombobox too. December 23, 2016 at 8:35 am #55958 Gregory.PParticipant 'Support' wrote: Thank you for the demo. This is a standard behaviour, OnClick event is not fired in standard TCombobox too. Ok DropDown event = OnClick event :a3: Code: procedure TForm1.sComboBox1DropDown(Sender: TObject); begin sComboBox1.Clear; with sComboBox1.Items do begin Add('1'); Add('2'); Add('3'); end; sComboBox1.ItemIndex := 0; end; Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Root › Technical support › Troubleshooting