Question re: TAdvListBox

For TAdvListBox what would be the best way to create larger Search and Insert boxes with font support? I don't think I've missed any appropriate properties. Thanks.

This is a code snippet how you can change the search button:

begin
  advlistbox1.SearchEdit.Buttons[0].Button.Width := 64;
  advlistbox1.SearchEdit.Buttons[0].Button.PNGName := '';
  advlistbox1.SearchEdit.Buttons[0].Button.Caption := 'test';
end;

Thanks, Bruno. I'll give that a try.