tAdvInputTaskDialog and tFileListBox as inputControl

Hi

It is probably very trivial.

I used tAdvInputTaskDialog with tFileListBoxEx as an InputControl.
But I'm unable to retrieve the selected info :frowning:

I included a small project

Sincerely
Olivier
Project5.zip (6.4 KB)

Implement OnDialogInputGetText in following way:

procedure TForm6.AdvInputTaskDialog1DialogInputGetText(Sender: TObject;
  var Text: string);
begin
  Text := FileListBoxEx2.Items[FileListBoxEx2.ItemIndex];
end;

Thanks

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.