Placing cursor in TAdvListBox search box

I have this form:

  TForm1 = class(TForm)
    AdvVerticalPolyList1: TAdvVerticalPolyList;
    AdvListBox1: TAdvListBox;
  private
    { Private declarations }
  public
    { Public declarations }
  end;


Parent's AdvListBox1 is AdvVerticalPolyList1.

How can I move the cursor in the search box in AdvListBox1 at runtime ?

I tried with AdvListBox1.Setfocus and AdvVerticalPolyList1.SelectItem(0) but none did work. I also played with TabOrder but no joy.

Many thanks
Alberto

Currently there was no built-in control for this.
We've added now the capability to do this via:

AdvListBox.SearchEdit.SetFocus;
and this will be available in the next update.

Oh, thank you very much, Bruno.

Kind regards,
Alberto