Hi, i have in a project a ComboBox:
procedure TForm1.FormCreate(Sender:TObject);
begin
ComboBox1.Items.Add('aaa');
ComboBox1.Items.Add('bbb');
end;
When i change the "Text" of the comboBox with this code, the "ComboBox1Change" is non executed.
ComboBox1.Text:='bbb';
It's a bug?
Thanks, MArio