Recent

Author Topic: CompoBox ArrowKeysTraverseList is not working when False  (Read 2033 times)

Never

  • Sr. Member
  • ****
  • Posts: 409
  • OS:Win7 64bit / Lazarus 1.4
CompoBox ArrowKeysTraverseList is not working when False
« on: October 13, 2014, 01:43:47 pm »
add a combobox  add some items set ArrowKeysTraverseList =False
run the app
test the arrows
are functioning properly as ArrowKeysTraverseList =True.
change styles change the property to true and again to false the behavior remains the same
or try this
Code: [Select]
 
var x:integer;
begin
ComboBox1.Clear;
  for x:=0 to 5 do begin
     ComboBox1.Items.Add(IntToStr(x));
  end;
  ComboBox1.ArrowKeysTraverseList:=False;
end;
ShowMessage(BoolToStr(ComboBox1.ArrowKeysTraverseList,'True','False'));
 
test the arrows the property is false the arrows are working
Νέπε Λάζαρε λάγγεψων οξωκά ο φίλοσ'ς αραεύσε

engkin

  • Hero Member
  • *****
  • Posts: 3112
Re: CompoBox ArrowKeysTraverseList is not working when False
« Reply #1 on: October 13, 2014, 03:51:21 pm »
It is not implemented yet.

Win32:
Code: [Select]
class procedure TWin32WSCustomComboBox.SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
  NewTraverseList: boolean);
begin
  // TODO: implement me?
end;

QT:
Code: [Select]
class procedure TQtWSCustomComboBox.SetArrowKeysTraverseList(
  const ACustomComboBox: TCustomComboBox; NewTraverseList: boolean);
begin
  {$note implement TQtWSCustomComboBox.SetArrowKeysTraverseList}
end;

Never

  • Sr. Member
  • ****
  • Posts: 409
  • OS:Win7 64bit / Lazarus 1.4
Re: CompoBox ArrowKeysTraverseList is not working when False
« Reply #2 on: October 13, 2014, 04:25:17 pm »
Thank you @engkin
expected to work
because of the missing [ Not implemented ] in property comments
Νέπε Λάζαρε λάγγεψων οξωκά ο φίλοσ'ς αραεύσε

 

TinyPortal © 2005-2018