Hi again,
I found another display-bug which can be tested with my demo-application:
Add a timer (timer1) to Unit 1 and set the following timer procedure:
Code:
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if sComboBox1.ItemIndex = 0 then
sComboBox1.ItemIndex := 1
else
sComboBox1.ItemIndex := 0;
end;
When the ItemIndex = 1 and you move the cursor from the combobox to the gray panel, then the itemindex is set to 0. This causes a display-bug in the combobox. “Item0” and “Item1” is shown at the same time.